php/mysql三日通-第二天(二)

四、 向服务器发送数据

  现在我们从数据库读取数据已经没有太多困难了。但是怎么反过来向数据库发送数据呢?其实这不是php的问题。

  首选,我们创建一个带有简单表格的网页。

 
$#@60;html$#@62;$#@60;body$#@62;$#@60;?phpif ($submit) {// 处理表格输入$db = mysql_connect(“localhost”, “root”);mysql_select_db(“mydb”,$db);$sql = “insert into employees (first,last,address,position)values ($first,$last,$address,$position)”;$result = mysql_query($sql);echo “thank you! information entered.
“;} else{// 显示表格内容?$#@62;$#@60;form method=”post” action=”$#@60;?php echo $path_info?$#@62;”$#@62;名:$#@60;input type=”text” name=”first”$#@62;$#@60;br$#@62;姓:$#@60;input type=”text” name=”last”$#@62;$#@60;br$#@62;住址:$#@60;input type=”text” name=”address”$#@62;$#@60;br$#@62;职位:$#@60;input type=”text” name=”position”$#@62;$#@60;br$#@62;$#@60;input type=”submit” name=”submit” value=”输入信息”$#@62;$#@60;/form$#@62;$#@60;?php} // end if,if结束?$#@62;$#@60;/body$#@62;$#@60;/html$#@62;

  您现在已经向数据库中插入数据了。不过还有很多完善的工作要做。如果用户没有填写某一栏怎么办?在需要填入数字的地方填了文字怎么办?或者填错了怎么办?别担心。我们一步一步来。

本新闻共2页,当前在第2页 1 2

http://www.bkjia.com/phpjc/532613.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/532613.htmltecharticle四、 向服务器发送数据 现在我们从数据库读取数据已经没有太多困难了。但是怎么反过来向数据库发送数据呢?其实这不是php的问题。 首…

Posted in 未分类

发表评论