次のスクリプトがあります。ユーザーが URL のパラメータとして 123 などの数値を渡すと、アプリはその値を MySQL からロード/フェッチし、テキストエリアに表示します。
たとえば、URL に「example.com/index.php?id=123」と入力すると、データベースから 123 番目のレコードが取得され、テキストエリアに表示されます。すべてが機能しているようですが、フォームが送信されたときに「ソース」テーブルの最後の行/ID を表示したいと考えています。そのため、「保存済み」と表示する代わりに ポップアップでは、「124」(または最後に更新された行/番号)のようなものが表示されます。
index.php:
<?php
include('connect-db.php');
if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0)
{
$id = $_GET['id'];
$result = mysql_query("SELECT content FROM source WHERE id=$id") or die(mysqli_error());
$row = mysql_fetch_array($result);
if($row)
{
$submit_date = date("Ymd");
$content = $row['content'];
}
}
?>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#myform").submit( function () {
$.post(
'submit.php',
$(this).serialize(),
//
// show the last id here!
//
function(data){ alert("Saved!"); }
);
return false;
});
});
</script>
</head>
<body>
<div id="header" >
<form action="submit.php" method="post" id="myform">
<textarea id="editor" name="editor" id="editor"><?php echo $content; ?></textarea>
<br/>
<input type="submit" name="submit" value="Submit" id="submit"/>
</form>
</div>
</body>
</html>
submit.php:
<?php
include('connect-db.php');
$submit_date = date("Ymd");
$content = mysql_real_escape_string(htmlspecialchars($_POST['editor']));
$ip_address = $_SERVER['REMOTE_ADDR'];
if ($content != '') {
//
// Show the variable (last_id) value in the JavaScript above!
//
$last_id = mysql_insert_id();
mysql_query("INSERT INTO source (submit_date, ip, content) values('$submit_date','$ip_address','$content')") or die(mysql_error());
mysql_close($connection);
}
?>
接続データベース:
<?php
$server = 'localhost';
$user = 'domdom';
$pass = 'password@123';
$db = 'domdom';
$connection = mysql_connect($server, $user, $pass) or die ("Could not connect to server ... \n" . mysql_error ());
mysql_select_db($db) or die ("Could not connect to database ... \n" . mysql_error ());
?>
PDO や MySQLi に関するアドバイスは必要ないことに注意してください。現時点では重要ではありません。ただし、セキュリティ/SQL クエリなどの改善に関する提案は大歓迎です。ありがとう。