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>