当前位置:Gxlcms > PHP教程 > PHP5对Mysql5的任意数据库表的管理代码示例(四)_PHP教程

PHP5对Mysql5的任意数据库表的管理代码示例(四)_PHP教程

时间:2021-07-01 10:21:17 帮助过:2人阅读

续:如果点击删除一个条目则会跳转到del.php(做为现在的主流开发语言)
//del.php(做为现在的主流开发语言)

Deleting an entry from the database



Delete an entry


$database = "sunsite";
$tablename = $_REQUEST[tablename];
echo "

Data from $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)
{
echo "Found these entries in the database:

";
echo "";
while ($r = MySQL(和PHP搭配之最佳组合)_fetch_array($result))
{
echo "";
$colname[$column] = $r[0];
$column = $column + 1;
}
echo "";
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 "

";
echo "";
for($col=1;$col<$column;$col++) echo "";
echo "";
}
echo "
$r[0]
(做为现在的主流开发语言)?$colname[0]=$r[0]&tablename=$tablename">$r[0]$r[$col]
";
}
else echo "No data.";
MySQL(和PHP搭配之最佳组合)_free_result($result);

?>
(做为现在的主流开发语言)?tablename=">Finish


然后写入数据库
//dele.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");
?>

以上就是所有的代码了。
把它们都放到同一个目录下面即可。
注意:提醒!以上代码在copy的时候一定注意在编辑器里面把每一行代码前面的tab去掉,不然php(做为现在的主流开发语言)5编译不过。
而且在每个文件中$database目前为sunsite,$table为software,这个可以根据需要修改。

欢迎发表看法。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508896.htmlTechArticle续:如果点击删除一个条目则会跳转到del.php (做为现在的主流开发语言) //del.php (做为现在的主流开发语言) html headtitleDeleting an entry from th...

人气教程排行