摘要:
use class1; create table user2( -> id int auto_increment primary key, -> name varchar(50) not null, -> password varchar(50) not null); describe user2; 阅读全文
摘要:
<?phpheader( 'Content-Type:text/html;charset=utf-8 '); include_once("conn/conn.php"); $id=$_GET["id"]; $sql='delete from user where id='.$id; $r=mysql 阅读全文