這裏是我的代碼:你會自動地理解它做什麼存儲值與循環
<form method="post">
Enter Your Numbers
<input type="number" name="number" min="1" max="10" />
<input type="submit" name="submit" value="submit" />
</form>
<?php
if(isset($_POST['submit']))
{
$number = $_POST['number'];
for ($x=0; $x<=$number; $x++) {
echo "<input type=\"text\" name=\"tbno".$x."\">";
}
echo "<input type=\"submit\" value=\"submit\" name=\"submit1\">";
}
if(isset($_POST['submit1']))
{
$link = mysql_connect("localhost", "root", "");
$db = mysql_select_db("bookabook");
}
?>
我的問題是:我想存儲在數據庫中的文本框的值,但我不知道該怎麼做這個。
if(isset($_POST['submit1']))
{
$link = mysql_connect("localhost", "root", "");
$db = mysql_select_db("bookabook");
//WHAT SHOULD I WRITE HERE
}
有誰能告訴我嗎?
所有的php語句都是從第一個代碼段依次調用,還是在它們之間發生了什麼?你的數據庫模式是什麼樣的?你收集的數據是什麼樣的?沒有您提供的代碼,我們無法真正幫助您。如果你可以給我們你的模式或sqlfiddle,那會很棒。 – 2014-09-12 14:49:31
我只是想將文本框的值存儲在我的數據庫調用bookbookook中,並且名稱爲book_name – 2014-09-12 14:50:36
該鏈接將幫助您一點點:http://www.w3schools.com/php/func_mysqli_query.asp – 2014-09-12 14:56:20