-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>
我看不到你的'
你面臨什麼問題? –
噢,我的天,我忘了這件事 對不起,但我是一個程序員tyro – YaSoor