我剛開始學習php和html,我想做一些獲取輸入並用php代碼打印輸出的東西。但是,使用我擁有的代碼,它可以讓我輸入,但是當點擊提交時不會打印任何內容。爲什麼?如何使用php代碼打印輸入
<html>
<head><title>Noob</title></head>
<body>
<form action="" method="post">
<input type="text" name="username" value="" />
<input type="submit" name="submit value="Submit" />
</form>
<?php
if (isset($_POST['submit'])) { //to check if the form was submitted
$username= $_POST['username'];
echo $username;
}
?>
</body>
<html>
謝謝你的!但是,在輸入我的數據並按提交後,頁面只是刷新並且不打印數據。這是爲什麼? – Joefa
@Joefa用