SubmitとInsertfunctioncalling.php
の 2 つのボタンを含むというページを作成しました。
ボタンがクリックされたときに実行される関数をテストしたい。出力を同じページに表示したい。そこで、ボタンごとに 1 つずつ、2 つの関数を作成しました。
<form action="functioncalling.php">
<input type="text" name="txt" />
<input type="submit" name="insert" value="insert" onclick="insert()" />
<input type="submit" name="select" value="select" onclick="select()" />
</form>
<?php
function select(){
echo "The select function is called.";
}
function insert(){
echo "The insert function is called.";
}
?>
ここでの問題は、ボタンのいずれかがクリックされた後に出力が得られないことです。
正確にどこが間違っているのですか?