把來(lái)自表單的數(shù)據(jù)插入數(shù)據(jù)庫(kù)
創(chuàng)新互聯(lián)建站從2013年開始,先為金州等服務(wù)建站,金州等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為金州企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
現(xiàn)在,我們創(chuàng)建一個(gè) HTML 表單,這個(gè)表單可把新記錄插入 "Persons" 表。
這是這個(gè) HTML 表單:
html
body
form?action="insert.php"?method="post"
Firstname:?input?type="text"?name="firstname"?/
Lastname:?input?type="text"?name="lastname"?/
Age:?input?type="text"?name="age"?/
input?type="submit"?/
/form
/body
/html
當(dāng)用戶點(diǎn)擊上例中 HTML 表單中的提交按鈕時(shí),表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫(kù),并通過(guò) $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語(yǔ)句,一條新的記錄會(huì)添加到數(shù)據(jù)庫(kù)表中。
下面是 "insert.php" 頁(yè)面的代碼:
?php
$con?=?mysql_connect("localhost","peter","abc123");
if?(!$con)
{
die('Could?not?connect:?'?.?mysql_error());
}
mysql_select_db("my_db",?$con);
$sql="INSERT?INTO?Persons?(FirstName,?LastName,?Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if?(!mysql_query($sql,$con))
{
die('Error:?'?.?mysql_error());
}
echo?"1?record?added";
mysql_close($con)
?
把下面的代碼保存為post.php
?
$conn = mysql_connect("localhost","11111","22222");
$action = $_POST['action'];
if($action == 'send'){
$username = $_POST['username'];
$password = $_POST['password'];
mysql_select_db("333333",$conn);
$sql = "INSERT INTO player (username,password) VALUES ('$username','$password')";
$result = mysql_query($sql,$conn);
}
?
html
body
form method="post" action="post.php"
input type="text" name="username"
input type="text" name="password"
input type="hidden" name="action" value="send"
input type="submit" name="Submit" value="提交"
/form
/body
/html
因?yàn)槟闵賹懥艘粋€(gè)大括號(hào)的結(jié)尾。
修改后:
table?id="DataList1"?cellspacing="0"?border="0"?width="100%"
?php
$db?=?mysqli_connect('localhost',?'root','root');//連接MySQL服務(wù)器
mysqli_select_db($db,'ticket');//選擇數(shù)據(jù)庫(kù)文件
if(mysqli_connect_errno()){
echo?"Error:Could?not?connect?to?mysql?ticket"; exit;
}
$q="select?*?from?news";//設(shè)置查詢指令
$result=mysql_query($db,$q);//執(zhí)行查詢
while($row=mysql_fetch_assoc($result))?//將result結(jié)果集中查詢結(jié)果取出一條
{
echo"trtd".$row["news"]."/tdtd".$row["date"]."/td/tr";?exit;
}
}?//?就是這樣?
?
/table
謝謝謝謝謝謝碼密。的入輸要需所面。界理管臺(tái)后器。由路陸登是。碼密理管。廖仲庭。器由。路。
php代碼可以寫在html代碼中的任意部分 只要帶上? ? 界定標(biāo)簽就好了和平時(shí)寫php沒有任何區(qū)別 但是需要注意的一點(diǎn)是 這個(gè)文件的后綴名 要是 .php 的 所以更準(zhǔn)確的說(shuō)法應(yīng)該是html寫在了PHP文件中 這并不影響我們同時(shí)使用這兩種語(yǔ)言 隨便寫了一點(diǎn) 給你參考下 ?php //連接數(shù)據(jù)庫(kù) $link = mysql_connect("localhost", "username", "password") or die("Could not connect: " . mysql_error()); print ("Connected successfully"); //選擇數(shù)據(jù)庫(kù) mysql_select_db('dbname', $link) or die ('Can\'t use db : ' . mysql_error()); //進(jìn)行你想要的操作 $a =123; ? html xmlns="" head meta http-equiv="Content-Type" content="text/html; charset=utf-8" / title發(fā)現(xiàn)I Do一刻/title link href="css/public.css" rel="stylesheet" type="text/css" script src="Scripts/AC_RunActiveContent.js" type="text/javascript"/script /head body ?php echo $a; ? /body /html 用echo 直接輸出到 頁(yè)面上就好了 你自己看我下面寫的html代碼中 就有這樣的例子 不管你想發(fā)到哪里都可以用這種方法
就是$insert這條SQL語(yǔ)句的問(wèn)題
echo $insert;看看語(yǔ)句有沒有問(wèn)題
檢查方法將輸出的SQL語(yǔ)句放在數(shù)據(jù)庫(kù)里執(zhí)行以下
標(biāo)準(zhǔn)寫法
$insert = "insert into my_tab(user,psd) values('".$user."','".$psd."')":
數(shù)據(jù)庫(kù)有很多種類:mysql,oracle,mssql,db2等等。PHP操作數(shù)據(jù)庫(kù)的時(shí)候,要保證該類型數(shù)據(jù)庫(kù)的擴(kuò)展已開啟。這里連接的數(shù)據(jù)庫(kù)以mysql為例:?php
//數(shù)據(jù)庫(kù)服務(wù)器地址
$host="localhost";
//連接數(shù)據(jù)庫(kù)用戶名
$uname="root";
//連接數(shù)據(jù)庫(kù)密碼
$upass="";
//連接數(shù)據(jù)庫(kù)
$conn=mysql_connect($host, $uname,$upass);
//判斷連接
if(!$conn){
die("連接數(shù)據(jù)庫(kù)失?。?).mysql_errno();
}
//連接成功,其他操作省略
?