PHP mysql_connect()连接-已淘汰

1、首先在mysql命令控制台新建数据库

mysql> create database test;
Query OK, 1 row affected (0.04 sec)

mysql> use test;
Database changed

mysql> create table test_table(
    -> id int(5) auto_increment primary key,
    -> user char(10),
    -> pass char(10),
    -> text char(10),
    -> sex char(1),
    -> connect char(10));
Query OK, 0 rows affected (0.21 sec)

mysql>

2、登录注册代码

index.html




    
    登录


    
登录

用户名:

密码:

 

新用户注册

register.html




    
    注册


    
注册

用户名:

密码:

性别:

联系:

文本:

 

已注册

login.php


register.php


点击登录");

?>


你可能感兴趣的:(PHP,Mysql)