我想在表單提交後回顯一些內容。但是,當我點擊提交按鈕,似乎該頁面只是刷新自己,我沒有看到我寫在回聲部分的單詞。這裏是我的代碼:檢查表單是否有效不起作用
<?php
if (isset($_POST['submit'])) {
echo "submitted";
}
?>
<h3>Post your form here</h3>
<form method="post" action="<?php $_SERVER['PHP_SELF']; ?>">
<label>Insert a title here</label><br>
<input name="title" type="text" placeholder="add a title"><br><br>
<label>Insert the body here</label><br>
<textarea name="body" placeholder="insert the body here "></textarea><br><br>
<input type="submit" value="submit" name="submit"><br>
</form>
我也嘗試通過刪除isset函數的代碼,但也沒有工作,要麼。
仍然不起作用! – NinaDev
我只是試着確切的代碼,工作正常。你可以啓用錯誤,看看你是否可以得到任何錯誤? 'error_reporting(E_ALL);' 'ini_set(「display_errors」,「On」);' –
我應該在哪裏放置您指定的代碼? – NinaDev