//首先配置數(shù)據(jù)庫連接
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的達(dá)茂旗網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
mysql_connect("localhost","root","");
mysql_select_db("db");
mysql_query("set?names?'utf8'");
//寫sql語句并執(zhí)行
$sql="select?id?from?表名?where?條件";?
$query=mysql_query($sql);
$rs=mysql_fetch_array($query);
//打印
echo?$rs['id']
有兩種方式,一種是get方式,一種是post方式,get方式是這樣的:update.php?id=5,這個(gè)5就是你for循環(huán)的id,另一種方式是把id放入一個(gè)hidden屬性的input變量,提交后使用post獲取。
剛插入數(shù)據(jù)到MySQL數(shù)據(jù)庫中,如何獲得該數(shù)據(jù)的的ID呢?這里提供一個(gè)獲取該ID的方法,需要用到AUTO_INCREMENT,因?yàn)闆]有的話,mysql_insert_id()返回 0。
定義和用法
mysql_insert_id() 函數(shù)返回上一步 INSERT 操作產(chǎn)生的 ID。
如果上一查詢沒有產(chǎn)生 AUTO_INCREMENT 的 ID,則 mysql_insert_id() 返回 0。
語法
mysql_insert_id(connection)
參數(shù)
描述
connection 可選。規(guī)定 MySQL 連接。如果未規(guī)定,則使用上一個(gè)連接。
說明
mysql_insert_id() 返回給定的 connection 中上一步 INSERT 查詢中產(chǎn)生的 AUTO_INCREMENT 的 ID 號。如果沒有指定 connection ,則使用上一個(gè)打開的連接。
提示和注釋
注釋:如果需要保存該值以后使用,要確保在產(chǎn)生了值的查詢之后立即調(diào)用 mysql_insert_id()。
例子
?php
$con = mysql_connect("localhost", "hello", "321");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("test_db",$con);
$sql = "INSERT INTO person VALUES ('Carter','Thomas','Beijing')";
$result = mysql_query($sql,$con);
echo "ID of last inserted record is: " . mysql_insert_id();
mysql_close($con);
?
輸出類似:
ID of last inserted record is: 5
新建文件a.php
?php?$id=1;?
html
body
!--每次鼠標(biāo)點(diǎn)擊會運(yùn)行abc函數(shù)--
div?onclick="abc('?php?echo?$id;?')"?php?echo?$id;?/div
script?type="text/javascript"?src="./jquery-1.8.3.min.js"/script
script?type="text/javascript"
function?abc(num){
var?id=num;
$.post("index.php",?{?"id":?id?},//使用post向index.php提交id
function(data){
alert(data);//返回并彈出
},?"json");
}
/script
/body
/html
新建一個(gè)index.php
?php
echo?$_POST['id'];//獲取a.php傳過來的值并顯示
目錄下面有三個(gè)文件:
a.php 是顯示文件
index.php 是獲取a.php提交過來的數(shù)據(jù)文件
jquery-1.8.3.min.js? 是jquery插件文件
看事例:
a href="show.php?id=23"電視/a | a href="show.php?id=24"冰箱/a
以下是show.php代碼
?php
$id=$_GET['id'];
// 這樣就獲得ID值了,然后就可以查詢數(shù)據(jù)庫或更新數(shù)據(jù)庫了
?
a.php?id=n
a.php
isset($_GET['id']) $id = (int)$_GET['id'] ;
find id=$id data