国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

PHP5對(duì)Mysql5的任意數(shù)據(jù)庫表的管理代碼示例(四)

瀏覽:49日期:2024-02-14 17:17:26

續(xù):如果點(diǎn)擊刪除一個(gè)條目則會(huì)跳轉(zhuǎn)到del.php//del.php<html><head><title>Deleting an entry from the database</title><meta http-equiv='Content-Type' content='text/html; charset=gb2312' /></head><body bgcolor=#ffffff><h2>Delete an entry</h2><?$database = 'sunsite';$tablename = $_REQUEST['tablename'];echo '<h2>Data from $tablename</h2>';mysql_connect('localhost','root','') or die ('Problem connecting to DataBase');$query = 'show columns from $tablename';$result = mysql_db_query($database,$query);$column = 0;if ($result){echo 'Found these entries in the database:<br><p></p>';echo '<table width=90% align=center border=1><tr>';while ($r = mysql_fetch_array($result)){echo '<td align=center bgcolor=#00FFFF>$r[0]</td>';$colname[$column] = $r[0];$column = $column + 1;}echo '</tr>';mysql_free_result($result);

$query = 'select * from $tablename';$result = mysql_db_query($database, $query);if ($result) while ($r = mysql_fetch_array($result)){echo '<tr>';echo '<td><a href='http://www.intensediesel.com/bcjs/dele.php?$colname[0]=$r[0]&tablename=$tablename'>$r[0]</td>';for($col=1;$col<$column;$col++) echo '<td>$r[$col]</td>';echo '</tr>';}echo '</table>';}else echo 'No data.';mysql_free_result($result);

?><a href='http://www.intensediesel.com/bcjs/tables.php?tablename=<? echo '$tablename'?>'>Finish</a></body></html>然后寫入數(shù)據(jù)庫//dele.php<?php$database = 'sunsite';$tablename = $_GET['tablename'];mysql_connect('localhost','root','') or die ('Problem connecting to DataBase');$query = 'show columns from $tablename';$result = mysql_db_query($database,$query);$column = 0;if ($result){while ($r = mysql_fetch_array($result)){$colname[$column] = $r[0];$column = $column + 1;}mysql_free_result($result);}

$para = $_GET[$colname[0]];

mysql_connect('localhost','root','') or die ('Problem connecting to DataBase');$query = 'delete from $tablename where $colname[0]='$para';';$result = mysql_db_query($database, $query);Header('Location: edit.php?tablename=$tablename'); ?><meta http-equiv='Content-Type' content='text/html; charset=gb2312' />以上就是所有的代碼了。把它們都放到同一個(gè)目錄下面即可。注意:提醒!以上代碼在copy的時(shí)候一定注意在編輯器里面把每一行代碼前面的tab去掉,不然php5編譯不過。而且在每個(gè)文件中$database目前為sunsite,$table為software,這個(gè)可以根據(jù)需要修改。

歡迎發(fā)表看法。

標(biāo)簽: PHP
主站蜘蛛池模板: 临江市| 大埔区| 莲花县| 绍兴县| 贵溪市| 临沭县| 天峻县| 长岛县| 深泽县| 铜梁县| 镇赉县| 弋阳县| 福泉市| 甘谷县| 彩票| 定襄县| 阳原县| 白城市| 永年县| 平江县| 藁城市| 达孜县| 淮北市| 内丘县| 宝兴县| 治多县| 广平县| 怀来县| 保靖县| 威宁| 濮阳市| 拜城县| 奉化市| 普定县| 额敏县| 安乡县| 革吉县| 延长县| 博兴县| 农安县| 黎平县|