?php
創(chuàng)新互聯(lián)建站主營民權(quán)網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶APP軟件開發(fā),民權(quán)h5小程序開發(fā)搭建,民權(quán)網(wǎng)站營銷推廣歡迎民權(quán)等地區(qū)企業(yè)咨詢
if(isset($_GET['id'])!empty($_GET['id'])){
$id=intval($_GET['id']);
$sql="delete from jxkc_a1 where id = $id";
if(mysql_query($sql)){
echo "script type='text/javascript'alert('操作成功')/script";
}else{
echo "script type='text/javascript'alert('操作失敗')/script";
}
}
?
?php
$arr = mysql_query("select * from jxkc_a1 where username='$username' order by id desc" );
while($result = mysql_fetch_array($arr))
{?
tr
tdspan class="STYLE9" ?php echo $result["lesson"];? /td
tdspan class="STYLE9" ?php echo $result["plantime"];? /td
tdspan class="STYLE9" ?php echo $result["student"];? /td
tdspan class="STYLE9" ?php echo $result["classtime"];? /td
tdspan class="STYLE9" ?php echo $result["type"];? /td
tda href=(這里假設(shè)你的地址是./list.php)"./list.php?id=?php echo $result["id"] ?" onclick=".......js"刪除/a/td
/tr?php } ?
我給你說個思路,比如說列表頁有個刪除,a
href="__URL__/delete/id/{$datas.id}"刪除/a
//
這里的__URL__到TP的開發(fā)文檔里就可以看到是什么意思,delete是自己定義的function定義的函數(shù)類,id也是自己定義的,后面的{$data.id}是從數(shù)據(jù)庫獲取的ID,這樣點(diǎn)擊以后傳值到
delete這個函數(shù)下,delete函數(shù)獲取這個ID值,也就是
$id
=
$_GET['id'];
再打開表比如NEW,$val
=
M('New');
$val-where("id
=
$id")-delete();就刪除了,修改道理差不多,TP的開發(fā)文檔里有相應(yīng)內(nèi)容。
補(bǔ)充:列表頁的ID獲取我給你個代碼你看看
funciton
lists(){
$val
=
M('New');
$data
=
$val-select();
$this-assign('data',$data);
$this-display();
}
在列表的HTML頁面里循環(huán)遍歷一下
volist
name="data"
id="datas"
標(biāo)題:{$datas.title}br/
操作:a
href="__URL__/delete/id/{$datas.id}"刪除/a
a
href="__URL__/update/id/{$datas.id}"修改/a
/volist
我不知道你基礎(chǔ)知識怎么樣,了解不了解TP,這里只是簡單說個思路,不懂的再繼續(xù)追問我吧
本內(nèi)容屬本人純手打,每天搜網(wǎng)絡(luò)meitiansou點(diǎn)com
關(guān)鍵看你的二維數(shù)組的結(jié)果.
如果Id是下標(biāo)并且是字符串,如下面的.
$demo = array('one'=array(1,2,3),'two'=array(3,4,5))
可以直接unset($demo['one']),
如果ID是下標(biāo)并且直接是數(shù)值,則直接
unset($demo[1]);
如果ID是元素值,則沒有好的辦法,只能用for遍歷,找到再unset()
$id=$_GET['id']; $id 是一個變量吧! 變量獲得什么值,就對應(yīng)刪除那條數(shù)據(jù)。和數(shù)據(jù)庫的ID自增沒關(guān)系的。