我在www.codeacademy.com在線php編輯器中使用了下面的代碼。它不打印我想要的輸出。請告訴我我犯了什麼錯誤這個php代碼有什麼問題嗎?任何人都可以幫助我
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form action="index.php" method="POST">
<input type= "text" name="num">
<input type="submit" name="submit">
</form>
<p>
<?php
if(isset($_POST['submit']))
{
$type=$_POST['num'];
echo "$type";
}
?>
</p>
</body>
</html>
你希望當用戶將東西在窗體頁自動更新?在這種情況下,這不會像那樣。 – Ocracoke 2014-11-24 09:40:40
輸出是什麼? – 2014-11-24 09:41:26
**危險**:此代碼[易受XSS影響](https://www.owasp.org/index.php/Cross-site_Scripting_(XSS))。用戶輸入需要在插入HTML文檔之前進行轉義! – Quentin 2014-11-24 09:41:48