0
PHPとHTMLでテキストを印刷するHTMLボタンを取得しようとしていますが、ページを更新する以外は何も起こりません。テストボタンはテキストを印刷しません
<?php
if ($_POST["submit_button"]) :
echo "testing";
?>
<p>"testing"</p>
<?php
endif;
?>
<html>
<body>
<h3>PHP button test form</h3>
<form name="test_form" action= "" method="post">
<button type="submit" name ="submit_button" >Update</button>
</form>
</body>
</html>