程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP5對Mysql5的任意數據庫表的管理代碼示例(四)

PHP5對Mysql5的任意數據庫表的管理代碼示例(四)

編輯:關於PHP編程

續:如果點擊刪除一個條目則會跳轉到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(和PHP搭配之最佳組合)_connect("localhost","root","") or die ("Problem connecting to DataBase");
$query = "show columns from $tablename";
$result = MySQL(和PHP搭配之最佳組合)_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(和PHP搭配之最佳組合)_fetch_array($result))
{
echo "<td align=center bgcolor=#00FFFF>$r[0]</td>";
$colname[$column] = $r[0];
$column = $column + 1;
}
echo "</tr>";
MySQL(和PHP搭配之最佳組合)_free_result($result);

$query = "select * from $tablename";
$result = MySQL(和PHP搭配之最佳組合)_db_query($database, $query);
if ($result)
while ($r = MySQL(和PHP搭配之最佳組合)_fetch_array($result))
{
echo "<tr>";
echo "<td><a href="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(和PHP搭配之最佳組合)_free_result($result);

?>
<a href="tables.php(做為現在的主流開發語言)?tablename=<? echo "$tablename"?>">Finish</a>
</body>
</html> 
然後寫入數據庫
//dele.php(做為現在的主流開發語言)
<?php(做為現在的主流開發語言)
$database = "sunsite";
$tablename = $_GET[tablename];
MySQL(和PHP搭配之最佳組合)_connect("localhost","root","") or die ("Problem connecting to DataBase");
$query = "show columns from $tablename";
$result = MySQL(和PHP搭配之最佳組合)_db_query($database,$query);
$column = 0;
if ($result)
{
while ($r = MySQL(和PHP搭配之最佳組合)_fetch_array($result))
{
$colname[$column] = $r[0];
$column = $column + 1;
}
MySQL(和PHP搭配之最佳組合)_free_result($result);
}

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

MySQL(和PHP搭配之最佳組合)_connect("localhost","root","") or die ("Problem connecting to DataBase");
$query = "delete from $tablename where $colname[0]=$para;";
$result = MySQL(和PHP搭配之最佳組合)_db_query($database, $query);
Header("Location: edit.php(做為現在的主流開發語言)?tablename=$tablename");
?>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
以上就是所有的代碼了。
把它們都放到同一個目錄下面即可。
注意:提醒!以上代碼在copy的時候一定注意在編輯器裡面把每一行代碼前面的tab去掉,不然php(做為現在的主流開發語言)5編譯不過。
而且在每個文件中$database目前為sunsite,$table為software,這個可以根據需要修改。

歡迎發表看法。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved