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

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

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

续:点击添加一个条目就会跳转到add.php(做为现在的主流开发语言)
//add.php(做为现在的主流开发语言)

Add an entry to the database



Add an entry


(做为现在的主流开发语言)
$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);
}
$id = 0;
do
{
$id++;
$query = "select * from $tablename where $colname[0]=$id";
$result = MySQL(和PHP搭配之最佳组合)_db_query($database,$query);
}
while(MySQL(和PHP搭配之最佳组合)_fetch_array($result))
?>

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

其中id是自动寻找并生成的,而且保证在数据库中id是唯一的。点击add之后会将内容写入数据库,然后会继续让你添加内容,直至添加完毕点击finish回到上一层,显示出添加条目後的数据库内容。
下面是添加过程中对数据库进行操作的addsoftware.php(做为现在的主流开发语言)
//addsoftware.php(做为现在的主流开发语言)
(做为现在的主流开发语言)
$database = "sunsite";
$tablename = $_POST[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);
}

for($col=0;$col<$column;$col++)
$para[$col] = $_POST[$colname[$col]];

if ($_POST[name])
{
MySQL(和PHP搭配之最佳组合)_connect("localhost","root","") or die ("Problem connecting to DataBase");
$query = "insert into $tablename values ($para[0] ";
for($col=1;$col<$column;$col++)
$query = $query . "," . $para[$col] . "";
$query = $query . ");";

$result = MySQL(和PHP搭配之最佳组合)_db_query($database, $query);
Header("Location: add.php(做为现在的主流开发语言)?tablename=$tablename");
}
else
{
echo "No name Entered. Please go back and reenter name";
}
?>

待续。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508895.htmlTechArticle续:点击添加一个条目就会跳转到add.php (做为现在的主流开发语言) //add.php (做为现在的主流开发语言) html headtitleAdd an entry to the database/ti...

人气教程排行