php表单数据库增删改查 php+mysql增删改查( 二 )


die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
mysql_query("UPDATE user SET password = '$_POST[password]' WHERE username = '$_POST[username]'");
mysql_close($con);
?
修改一个用户密码update.php
html
head
titleFORM/title
/head
body
br /
h1Insert:/h1
form action="insert.php" method="post"
username:input type="name" name="username"/
br /
password:input type="password" name="password"/
input type="submit" value="https://www.04ip.com/post/submit"/
/form
br /hr /br /
h1Delete/h1
form action="delete.php" method="post"
username:input type="name" name="username" /
br /
Are you sure?input type="submit" value="https://www.04ip.com/post/sure" /
/form
br /hr /br /
h1Update/h1
form action="update.php" method="post"
username:input type="name" name="username"/
br /
You want to change your password into:input type="password" name="password"/
input type="submit" value="https://www.04ip.com/post/submit"/
/form
br /hr /br /
/body
/html
以上三个功能的提交源Operate.html
php封装一个class类,实现mysql数据库的增删改查怎么操做?class sqlHelper{\x0d\x0apublic $conn;\x0d\x0apublic $dbname="数据库名称";\x0d\x0apublic $username="数据库用户名";\x0d\x0apublic $password="数据库密码";\x0d\x0apublic $host="localhost";\x0d\x0a//连接数据库\x0d\x0apublic function __construct(){\x0d\x0a$this-conn=mysql_connect($this-host,$this-username,$this-password);\x0d\x0aif(!$this-conn){\x0d\x0adie("连接失败".mysql_error());\x0d\x0a}\x0d\x0amysql_select_db($this-dbname,$this-conn);\x0d\x0a}\x0d\x0a//执行查询语句\x0d\x0apublic function execute_dql($sql){\x0d\x0a$res=mysql_query($sql,$this-conn);\x0d\x0areturn $res;\x0d\x0a}\x0d\x0a//执行增填改语句\x0d\x0apublic function execute_dml($sql){\x0d\x0a$b=mysql_query($sql,$this-conn);\x0d\x0aif(!$b){\x0d\x0areturn 3;\x0d\x0a}else{\x0d\x0aif(mysql_affected_rows($this-conn)){\x0d\x0areturn 1;//表示OK\x0d\x0a}else{\x0d\x0areturn 2;//表示没有行收到影响\x0d\x0a}\x0d\x0a}\x0d\x0a}\x0d\x0a}
php用表单形式显示数据库信息后怎样进行增删改查,提交到数据库先select查询 , 返回的结果显示到表单中 。
在update操作 , 将在表单中修改的结果更新到数据库中 。
很容易的,用thinkphp做更容易 。
关于php表单数据库增删改查和php+mysql增删改查的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

推荐阅读