ユーザーが必要とする回数に応じて、データを複数回投稿するスクリプトを作成するにはどうすればよいでしょうか。for ループを使用して実行できると考えていましたが、どこから始めればよいかわかりません。目標は、このデータ行を 1 回、3 回、または 5 回、mySQL テーブルに投稿することです。どこから始めればいいのか、誰にもわかりますか?
以下は私が取り組んでいるものです...
// check if the form was submitted
if( isset($_POST['save_stuff']) ) {
// create the website object
$stuff = new stuff($_POST['stuff']);
// prepare an SQL query
$stmt = $dbh->prepare("INSERT INTO `".$example."` (`title`, `stuf`, `due`, `details`, `category`, `user`) VALUES (:title, :stuff, :due, :details, :category, :user)");
$id = mysql_real_escape_string($_GET['id']);
// run the SQL query
if( $stmt->execute(array(
'title' => $stuff->title,
'stuff' => $id,
'due' => $stuff->due,
'details' => $stuff->details,
'category' => $stuff->category,
'user' => $stuff->user
))
) {
// if successful then go back to home page
header("Location: ../stuff/?id=".$id."");
} else {
// display an error if it failed
echo "<p>failed to add stuff</p>";
}