摘要:
编辑页面edit.php: <?php$id=$_GET['id'];$db= new mysqli('localhost','root','root','db_0808');$sql="select * from `user` where id={$id} ";$result=$db->query 阅读全文
摘要:
<?phpclass DBDA{ public $host="localhost"; public $uid="root"; public $pwd="root"; public $dbname="db_0808"; /** *给一个sql语句,返回执行的结果 *@param string $sql 阅读全文