2つのボタンがあるフォームがあり、どちらを選択するかによって、データベースから削除または編集されます。これらは、SQLステートメント(questioneditおよびquestiondelete)を使用する個々のページです。しかし、ボタンを押しても何も起こりません...どんなアイデアでも
これが私のJavaScriptです
function SelectedButton(button)
{
if(button == 'edit')
{
document.testedit_questionform.action ="testedit_questionedit.php";
}else if(button == 'delete'){
document.testedit_questionform.action ="testedit_questiondelete.php";
}
document.forms[].testedit_questionform.submit();
}
これが私のフォームです(ループからエコーされます)
<form name="testedit_questionform" action="SelectedButton" method="POST">
<span class="grid_11 prefix_1" id="" >
Question:<input type="text" name="QuestionText" style="width:588px; margin-left:10px;" value="$row[0]"/>
<input type="button" value="Edit" name="Operation" onclick="submitForm('edit')" />
<input type="button" value="Delete" name="Operation" onclick="submitForm('delete')" />
<input type="hidden" name="QId" value="$row[3]" /><br />
</form>