当前位置:Gxlcms > PHP教程 > PHP分多步骤填写发布信息的简单方法实例代码_PHP

PHP分多步骤填写发布信息的简单方法实例代码_PHP

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

1.php
代码如下:



2.php
代码如下:



3.php
代码如下:



4.php
代码如下:

$base1=$_REQUEST['base1'];
$base2=$_REQUEST['base2'];
$prcname=$_REQUEST['prcname'];
$price=$_REQUEST['price'];
$prcXH=$_REQUEST['prcXH'];
$other1=$_REQUEST['other1'];
$other2=$_REQUEST['other2'];

$sql1="insert into [base_table](base1,base2) values('{$base1}','{$base2}')";
$sql2="insert into [prc_table](prcname,price,prcXH) values('{$prcname}','{$price}','{$prcXH}')";
$sql3="insert into [other_table](other1,other2) values('{$other1}','{$other2}')";
query($sql1);
query($sql2);
query($sql3);

echo "写入完成";
?>

人气教程排行