2016-06-24 60 views
-2

這段代碼php有什麼問題? 的NetBeans 8.1的程序都試過了,當我寫$ _GET問題發生這段代碼中的錯誤是什麼?

<html> 
 
    <head> 
 
     <meta charset="UTF-8"> 
 
     <title></title> 
 
    </head> 
 
    <body> 
 
     <?php 
 
     if ($_GET['button']) { 
 
     
 
     if ($_GET['name']) { 
 

 
     \t echo "Your Name Is".$_GET['name']; 
 
     }else { 
 
     \t echo "Plz Enter your Name"; 
 
     } 
 
} 
 
?> 
 
<div> 
 
    \t <label for="name">Name :</label> 
 
    \t <input type="text" name="name"/> 
 
    \t <input type="submit" name="button" value="Submit" for="name" /> 
 
</div> 
 
    </body> 
 
</html>

+0

我看不到你的'

'標籤 – Rohit

+0

你面臨什麼問題? –

+0

噢,我的天,我忘了這件事 對不起,但我是一個程序員tyro – YaSoor

回答

0

你已經忘記了形式的標籤:

<form method="get" action=""> 
    <label for="name">Name :</label> 
    <input type="text" name="name"/> 
    <input type="submit" name="button" value="Submit" for="name" /> 
</form> 
0

首先你沒有啓動表格標籤,然後您必須定義帖子類型,然後提交

<form class="" role="form" method="get" action="yourfile.php"></form>