Wednesday, June 29, 2011

处理用户输入的经验

用户端的介面应有尽可能清晰的提示,确保用户能正确输入,但是不需要多少安全验证,因为再多的安全保护都很容易很删改

服务器端不需要有多少对用户的提示,不过必需尽可能地保证数据的合法,一致,安全

Tuesday, June 28, 2011

Send variables between Javascript, Form and PHP on the same page



Super useful bits of PHP, Form and JavaScript code
















All code on this page is considered by us to contain the most basic and
important aspects of form sending. This page basically shows in the
shortest possible way how you can:

  • Test your PHP offline - Test your PHP pages offline easily, without installing your own web server.








  • Send variables between Javascript, Form and PHP on the same page:








  • Send variables from one page to another:









  • * URL variables to PHP/JavaScript page - Allow
    sending different variables via the URL string to the new page (readable
    through PHP or Javascript). This is more appropriate than the below if
    there are few pieces of small info you wish to send.

    * PHP variables to PHP page - Alternatively, maintain a session by sending PHP variables to another page with PHP in (allows super large arrays).

    * Form variables to PHP page - Alternatively, allow sending hidden form variables to a PHP page. This allows the user to (more easily than the above methods) select options on the page (via URL, radio buttons, or dropdown menu), and for these to be sent to the new page.

    * Form variables (tick boxes) to PHP page - As above but with tick boxes.






  • Dynamically update HTML - Allow different bits of HTML to dynamically execute according to user input:





















  • Send variables between Javascript, Form and PHP on the same page:





    PHP variable to Javascript variable:


    <?php   $myvar=10;   ?>
    
     <script type="text/javascript">
      jsvar = <?php echo $myvar; ?>;
      document.write(jsvar);  // Test to see if its prints 10:
     </script>
    


    Form variable to Javascript variable:


    <form name="myform4">    <input type="hidden" name="formvar" value="100">     </form>
    
     <script type="text/javascript">
      jsvar = document.myform4.formvar.value;
      document.write(jsvar) // test
     </script>
    





    PHP variable to Form variable:


    <form name="myform4">
      <input type="hidden" name="formvar" value="<?php phpvar=10; echo phpvar; ?>"> // PHP code inside HTML!!
     </form>
    




    Javascript variable to Form variable:


    <form name="myform3">
      <!-- It needn't be a "hidden" type, but anything from radio buttons to check boxes -->
      <input type="hidden" name="formvar" value="">
     </form>
    
     <script type="text/javascript">
      jsvar=10;
      document.myform3.formvar.value = jsvar;
     </script>
    


    Javascript variable to PHP variable:


    This is impossible (unless you reload the page), since all PHP code is
    rendered first (on the server side), and then Javascript is dealt with
    afterwards (on the client side).





    Form variable to PHP variable:


    Impossible like above.

























    Allow sending different variables via the URL string to the new page (readable through PHP or Javascript).



    The version shown below uses PHP to read the variables back, but it's
    possible to use Javascript and some messy splitting to do the same (for
    that route, see this nice little function, or here, or here for example code.)




    EXAMPLE:



    Send variables via URL!


    INSIDE "page1.php" or "page1.html"


    // Send the variables myNumber=1 and myFruit="orange" to the new PHP page...
     <a href="page2c.php?myNumber=1&myFruit=orange">Send variables via URL!</a> 
    
     


    INSIDE "page2c.php"

    <?php
      // Retrieve the URL variables (using PHP).
      $num = $_GET['myNumber'];
      $fruit = $_GET['myFruit'];
      echo "Number: ".$num."  Fruit: ".$fruit;
     ?>
     





























    Maintain a session by sending PHP variables (including multiple full
    blown multi-dimensional arrays if you so wish) to a page with PHP in.



    INSIDE "page1.php"

    <?php
     // "session_register()" and "session_start();" both prepare the session ready for use, and "$myPHPvar=5"
     // is the variable we want to carry over to the new page. Just before we visit the new page, we need to
     // store the variable in PHP's special session area by using "$_SESSION['myPHPvar'] = $myPHPvar;"
     session_register();
     session_start();                      
     $myPHPvar=5;
     $_SESSION['myPHPvar'] = $myPHPvar;
    ?>
    
    <a href="page2.php">Click this link</a>, and the "$myPHPvar" variable should carry through.
    



    INSIDE "page2.php"

    <?php
     // Retrieve the PHP variable (using PHP).
     session_start();
     $myPHPvar = $_SESSION['myPHPvar'];
     echo "myPHPvar: ".$myPHPvar." ..........(should say \"myPHPvar: 5\")<br>";
    ?>
    















    Allow sending hidden form variables to a PHP page. This allows the
    user to select options on the page, and for these to be carried across
    to the new page.



    EXAMPLE:



    (these links all go to the same PHP page...)

    Click 1st

    Click 2nd

    Click 3rd




    Click 1st

    Click 2nd

    Click 3rd
















    INSIDE "page1.php" or "page1.html"


    <!-- Pass over to the new page an arbitrary value, which in this case, is determined by... -->
    
    
    <!-- ***********  the link being clicked: (USE THIS OR...) ************** -->
    
    <a href="#" onclick="document.myform.formVar.value='first'; document.myform.submit(); return false">Click 1st</a><br>
    <a href="#" onclick="document.myform.formVar.value='second'; document.myform.submit(); return false">Click 2nd</a><br>
    <a href="#" onclick="document.myform.formVar.value='third'; document.myform.submit(); return false">Click 3rd</a><br>
    
    <!-- ***********  the radio button pressed before clicking "Send Form" (...OR USE THIS OR...) ************** -->
    
    <input name="br" type="radio" onClick="document.myform.formVar.value='first'">Click 1st<br>
    <input name="br" type="radio" onClick="document.myform.formVar.value='second'">Click 2nd<br>
    <input name="br" type="radio" onClick="document.myform.formVar.value='third'">Click 3rd<br><br>
    
    <!-- *********** the dropdown menu selected before clicking "Send Form" (...OR USE THIS) ************** -->
    
    <select onchange="document.myform.formVar.value=this.value">
     <option value="first">Select 1st</option>
     <option value="second">Select 2nd</option>
     <option value="third">Select 3rd</option>
    </select>
    
    <!-- ***************************************** -->
    
    
    <!--  In each of the above three cases, the hidden variable in the code below is needed for it all to work.
    Also notice how the destination page is given here, rather than in anything above -->
    
    <form method=post name="myform" action="page2.php">
     <input type="hidden" name="formVar" value="">
     <input type="submit" value="Send form!">
    </form>
    
    


    INSIDE "page2.php"

    <?php
     // Retrieve the hidden form variable (using PHP).
     $myvar = $_POST['formVar'];
     echo "myvar: ".$myvar;
    ?>
    









    Allow sending hidden form variables (using tick boxes) to a PHP
    page. This allows the user to select options on the page, and for these
    to be carried across to the new page.


    EXAMPLE:

    INSIDE "page1.html"


    Tick A

    Tick B

    Tick C









    CODE:


    INSIDE "page1.html"

    Tick A <input type="checkbox" checked onClick="document.myform2.a0.value = this.checked"><br>
    Tick B <input type="checkbox" onClick="document.myform2.b0.value = this.checked"><br>
    Tick C <input type="checkbox" onClick="document.myform2.c0.value = this.checked">
    
    <form method=post name="myform2" action="page2b.php">
     <input type="hidden" name="a0" value="true">
     <input type="hidden" name="b0" value="false">
     <input type="hidden" name="c0" value="false">
     <input type="submit" value="Send form!">
    </form>
    

    INSIDE "page2b.php"

    <?php
     // Retrieve the hidden form variable (using PHP).
     $myvarA = $_POST['a0'];
     $myvarB = $_POST['b0'];
     $myvarC = $_POST['c0'];
     echo "myvarA: ".$myvarA."<br>";
     echo "myvarB: ".$myvarB."<br>";
     echo "myvarC: ".$myvarC;
    ?>
    
















    Allow different bits of HTML to dynamically execute according to which radio button is pressed

    This is useful for many purposes including using buttons to change the
    picture (as part of a gallery), or for different sub forms to appear
    accordingly.



    EXAMPLE:





    Click 1st

    Click 2nd

    Click 3rd



    Anything can go here



    .....[I am the footer]







    CODE:

    <script type="text/javascript">
     function SetHTML1(type) {
      document.getElementById("a1").style.display = "none"
      document.getElementById("b1").style.display = "none"
      document.getElementById("c1").style.display = "none"
      // Using style.display="block" instead of style.display="" leaves a carriage return
      document.getElementById(type).style.display = ""
     }
    </script>
    
    <input name="br" type="radio" checked onClick="SetHTML1('a1')">Click 1st<br>
    <input name="br" type="radio" onClick="SetHTML1('b1')">Click 2nd<br>
    <input name="br" type="radio" onClick="SetHTML1('c1')">Click 3rd<br><br>
    
    <span id="a1" style="">Anything can go here                                                          </span>
    <span id="b1" style="display:none">...like an image...<br><img src="http://www.skytopia.com/ar.png">    </span>
    <span id="c1" style="display:none">...<a href="http://www.skytopia.com">or a link</a>...                         </span>
    
    .....[I am the footer] <!-- Not needed, but shows how stuff below the dynamic content makes it move up and down -->
    







    Allow different bits of HTML to dynamically execute according to which dropdown menu is selected


    EXAMPLE:






    Anything can go here



    .....[I am the footer]





    CODE:

    <script type="text/javascript">
     function SetHTML2(type) {
       document.getElementById("a2").style.display = "none"
       document.getElementById("b2").style.display = "none"
       document.getElementById("c2").style.display = "none"
       // Using style.display="block" instead of style.display="" leaves a carriage return
       document.getElementById(type).style.display = ""
     }
    </script>
    
    <select onchange="SetHTML2(this.value)">
     <option value="a2">Select 1st</option>
     <option value="b2">Select 2nd</option>
     <option value="c2">Select 3rd</option>
    </select>
    
    <span id="a2" style="display:none">Anything can go here                                                 </span>
    <span id="b2" style="display:none">...like an image...<br><img src="http://www.skytopia.com/ar.png">    </span>
    <span id="c2" style="display:none">...<a href="http://www.skytopia.com">or a link</a>...                </span>
    
    .....[I am the footer] <!-- Not needed, but shows how stuff below the dynamic content makes it move up and down -->
    








    Add/remove bits of HTML according to multiple checkboxes


    EXAMPLE:







    Anything can go here









    CODE:

    <script type="text/javascript">
     function SetHTML3(check,type) {
      if(check==true) document.getElementById(type).style.display = "";
      else            document.getElementById(type).style.display = "none";
     }
    </script>
    
    <input type="checkbox" CHECKED onClick="SetHTML3(this.checked,'a3')">
    <input type="checkbox" onClick="SetHTML3(this.checked,'b3')">
    <input type="checkbox" onClick="SetHTML3(this.checked,'c3')">
    
    <span id='a3'> <b> Anything can go here </b></span>
    <span id='b3' style="display:none"> <b> ...like an image... <img src="http://www.skytopia.com/ar.png"> </b></span>
    <span id="c3" style="display:none"> <b> ...<a href="http://www.skytopia.com">or a link</a> </b></span>
    









    Test your PHP pages offline easily, without installing your own web server.

    This was something recently that doubled my productivity in a snap. Simply use EasyPHP.
    It's only 8 megabyte, and a million times quicker and simpler to
    install/configure than a fully blown Apache (or equivalent) server. In
    fact, it's small GUI window will make it instant - just make sure you
    put PHP pages inside its special www folder, and point your browser to
    the "http://127.0.0.1/mywebpage.php".



    Apart from this amazing time saver, always "View source" to see what PHP
    outputs to the HTML/Javascript page (remember, PHP is read by the
    server, but is not potentially visible to the visitor in the same way
    that Javascript or HTML is).



    The last amazing tip is to insert "exit();" when an annoying bug creeps
    into the code to see where the code goes wrong (try "exit()" at
    different points throughout the code)

    References:                           
    1.  http://www.skytopia.com/project/articles/compsci/form.html

    Monday, June 27, 2011

    Mysql Problems with error 1100: Table ... was not locked with LOCK TABLES

    When you use LOCK TABLES, you must lock all tables that you are going
    to use in your queries. Because LOCK TABLES will not lock views, if
    the operation that you are performing uses any views, you must
    also lock all of the base tables on which those views depend.
    While the locks obtained with a LOCK TABLES statement are in effect,
    you cannot access any tables that were not locked by the statement.
    Also, you cannot use a locked table multiple times in a single
    query. 

    Reference                           
    1. http://hi.baidu.com/kennlee/blog/item/e839db66246e0520aa184c25.html 
    2. http://forums.mysql.com/read.php?21,134450,144180#msg-144180

    Tuesday, June 21, 2011

    When using a PHP function that requires a callback, how do we pass a custom parameter to the callback?

    class Callback
    {
        public $parameter;
    
        public function handle($matches)
        {
            return $matches[1] . ($matches[2] + $this->parameter);
        }
    }
    
    $instance = new Callback();
    $instance->parameter = 99;
    echo preg_replace_callback("|(\d{2}/\d{2}/)(\d{4})|", array($instance, 'handle'), $text);
    

    Reference 
    1. http://stackoverflow.com/questions/1502626/when-using-a-php-function-that-requires-a-callback-how-do-we-pass-a-custom-param

    Saturday, June 18, 2011

    止咳嗽

    陈皮, 黑豆,蜜枣,瘦肉

    1.浸陈皮
    2. 2个蜜枣,黑豆煮瘦肉
    3.  后下陈皮

    Friday, June 17, 2011

    How to configure apache for a new website

    //For Linux

    1. go /etc/apache2/sites-available/ and create a file for your site
    2. run command "a2ensite [yoursite]"
    3. reload apache by command "/etc/init.d/apache2 reload"
    4. configure hosts file /etc/hosts



    //For Mac

    1. go /etc/apache2/other/ and create a file for your site
    2. restart apache
    3. configure hosts file to point you website to 127.0.0.1 /etc/hosts


    //To include website configuration files into httpd.conf

    add this line to the bottom

    Include /private/etc/apache2/other/*.conf


    //To make .htacces file work

    So I opened up my http.conf file and went down to line 378, and sure enough this is what I saw:

    <directory>
    Options Indexes FollowSymLinks
    AllowOverride None
    </directory>

    In order to get .htaccess files working in the new version, I just had to change None to All, restart the server, and everything worked normally. Just thought I would share in case anyone else runs into this problem.

    <directory>
    Options Indexes FollowSymLinks
    AllowOverride All
    </directory>

    Reference:                      
    So You Want to Use .htaccess files with MAMP?
    http://trevordavis.net/blog/use-htaccess-files-with-mamp