ユーザーが既存の連絡先を更新または削除できるリストを作成しています。連絡先をデータベースに正常に送信する index.php を作成しました。list.php は、index.php から入力された連絡先のリストをテーブルに表示します。ここで、ユーザーは各連絡先を削除または編集する必要があります。
残念ながら、Edit をクリックすると edit_user.php がエラーを返します。SQL 構文にエラーがあります。 MySQL サーバーのバージョンに対応するマニュアルを参照して、1 行目の '' 付近で使用する正しい構文を確認してください。情報。
私はウェブ開発の初心者です。申し訳ありませんが、コードが多すぎます。私の間違いを見つけるのを手伝ってください。ここにconfig.phpがあります
<?php
$dbhost = 'mysql51-031.wc2.dfw1.stabletransit.com';
$dbuser = '549359_sargis';
$dbpass = '********';
$dbname = '549359_sargis';
$table = 'Contacts';
$connection = mysql_connect($dbhost,$dbuser,$dbpass) or die(mysql_error());
$select_db = mysql_select_db($dbname,$connection) or die(mysql_error());
?>
これが私のlist.phpです
<?php
include("config.php");
?>
<html>
<head>
<title>Contact List</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<a href="index.php">Create New Contact</a><hr/>
</head>
<body>
<?php
$result = mysql_query("SELECT * FROM Contacts", $connection);
$num_rows = mysql_num_rows($result);
if($num_rows > 0)
{
echo "<center><h1>Contact List: (Updated)</h1><table border = '1'>";
echo "<thead>";
echo "<tr>";
echo "<th> Firstname </th>";
echo "<th> Lastname </th>";
echo "<th> Email </th>";
echo "<th> Phone </th>";
echo "<th> Date </th>";
echo "<th> Action </th>";
echo "</th>";
echo "</thead>";
echo "<tbody>";
$query = mysql_query("SELECT * FROM Contacts");
while($record = mysql_fetch_array($query))
{
echo "<tr>";
echo "<td>" . $record['firstname'] . "</td>";
echo "<td>" . $record['lastname'] . "</td>";
echo "<td>" . $record['email'] . "</td>";
echo "<td>" . $record['phone_number'] . "</td>";
echo "<td>" . $record['timesstamp'] . "</td>";
echo "<td align='center'>"; ?>
<a href="edit_user.php"><input type="hidden" name="id" value="<?php echo $id; ?>" />Edit</a>
<?php echo "| <a href='list.php?action=delete&id=$id'>Delete</a></td>";
echo "</tr>";
}
echo "</table>";
echo "</center>";
}
else
echo "<center><h4>No contacts found.</h4></center>";
?>
</body>
</html>
そして、ここに edit_user.php があります
<?php
include("config.php");
?>
<html>
<head>
<title>Edit User</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<?php
if(isset($_POST['submit']))
//if (isset($_POST))
{
$id = intval($_POST['id']);
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$email = $_POST['email'];
$phonenumber = $_POST['phonenumber'];
$sql = "UPDATE Contacts SET firstname='".mysql_real_escape_string($firstname)."', lastname='".mysql_real_escape_string($lastname)."', email='".mysql_real_escape_string($email)."', phone_number='".mysql_real_escape_string($phonenumber)."', timesstamp =NOW() WHERE id=".mysql_real_escape_string($id);
//$sql = "UPDATE Contacts SET firstname='$firstname', lastname='$lastname', email='$email', phone_number='$phonenumber', timesstamp =NOW() WHERE id=$id";
//print_r($_POST).'<br />';echo $sql;exit;
$result = mysql_query($sql);
if($result)
{
header("Location: list.php");
}
else
{
echo "There was a problem with the query: ".mysql_error().".";
}
}
?>
<body>
<form action="edit_user.php?id=<?php echo $id;?>" method="POST">
<div>
First name: <input type ='text' id='firstname' name='firstname' value="<?php echo $firstname; ?>"/><br />
Last name: <input type = 'text' id='lastname' name='lastname'value="<?php echo $lastname; ?>"/><br />
Email: <input type = 'text' id='email' name='email' value="<?php echo $email; ?>"/><br />
Phone Number: <input type = 'text' id='phone_number' name='phonenumber' value="<?php echo $phonenumber; ?>"/><br />
<input type = 'submit' name = 'submit' value='Update' />
</div>
</form>
</body>
</html>