Web ページでこのコードを処理するために送信ボタンを押すたびに、オブジェクトが見つかりません (404 エラー) ページに移動します。私のスクリプトのいくつかで発生しましたが、私のローカルホスト(Xampp)または私のコードの問題の原因がわかりません。
if (isset($_POST['submit']))
{
require "dbc.php"; //Connection to database
//the textfield input to be saved
$name = mysql_real_escape_string($_POST['assign_id']);
$id = mysql_real_escape_string($_POST['id']);
//the mysql query to process the textfield input
$query = mysql_query("UPDATE users SET docID='$assign_id' WHERE id='$id'");
//normal statement to let the user know that the changes have been made.
echo "Doctor ID Successfully Assigned for Patient ID : $name ";
echo "<p>Refresh page to view changes.</p>";
}