PHP的一個基礎知識

       今天在寫一個小示例的時候, 網站推廣就是php提交到php中的時候,把$_POST寫成$_post,結果搞了好久,仍是沒有取到前臺的的值。呵呵,寫此博文,權當積累.....下面把這個簡單的例子貼一下吧!
register.php:
Php代碼   收藏代碼
  1. <html>  
  2. <head>  
  3.     <meta http-equiv="Content-Type" content="text/html;charset=gb2312">  
  4.     <title>註冊頁面</title>  
  5. </head>  
  6. <body>  
  7.   <form action="register1.php" method="post" name="registForm">  
  8.     <table width="330" border="0" align="center" cellpadding="5" bgcolor="#eeeeee">  
  9.         <tr>  
  10.             <td width="40%">用戶名:</td>  
  11.             <td><input name="username" type="text" id="username"/></td>  
  12.         </tr>  
  13.         <tr>  
  14.             <td>姓名:</td>  
  15.             <td><input name="name" type="text" id="name"/></td>  
  16.         </tr>  
  17.         <tr>  
  18.             <td>密碼:</td>  
  19.             <td><input name="pwd" type="text" id="pwd"/></td>  
  20.         </tr>  
  21.         <tr>  
  22.             <td>郵箱:</td>  
  23.             <td><input name="email" type="text" id="email"/></td>  
  24.         </tr>  
  25.         <tr>  
  26.             <td colspan="2" align="center">  
  27.                 <input type="submit" value="提交" name="submit"/>  
  28.                 <input type="reset" value="重置" name="button"/>  
  29.             </td>  
  30.         </tr>  
  31.     </table>  
  32.   </form>  
  33. </body>  
  34. </html>  

register1.php
Php代碼   收藏代碼
  1. <?php  
  2. $username = $_POST['username'];  
  3. $name = $_POST['name'];  
  4. $pwd = $_POST['pwd'];  
  5. $email = $_POST['email'];  
  6. //print_r($username);  
  7.   
  8. if(!emptyempty($username))  
  9. {  
  10.     echo "您填寫的信息爲:<br>\n";  
  11.     echo "用戶名: $username <br>\n";  
  12.     echo "姓名: $name <br>\n";  
  13.     echo "密碼: $pwd <br>\n";  
  14.     echo "郵箱: $email <br>\n";  
  15. }  
  16. print_r($_POST);//這裏是測試你從頁面到底封裝了那些數據  
  17. ?>  

     固然, 網站推廣你也能夠把regiser1.php跟regiser.php寫到一塊兒。(fblww-0220)
相關文章
相關標籤/搜索