2017年11月30日
摘要: mysql -h127.0.0.1 -uroot -p //链接数据库 show databases; //查找所有数据库 use class1; //选择数据库class1 select * from user; //查看数据库数据 describe user; //查看user表字段名 阅读全文
posted @ 2017-11-30 11:29 PHP`reader 阅读(250) 评论(0) 推荐(0) 编辑
摘要: use class1; create table user2( -> id int auto_increment primary key, -> name varchar(50) not null, -> password varchar(50) not null); describe user2; 阅读全文
posted @ 2017-11-30 11:24 PHP`reader 阅读(112) 评论(0) 推荐(0) 编辑
摘要: <input onclick="window.open('login.php')" type="submit" id="login" value="注册"> <script type="text/javascript">function jump{ window.open("login.php"); 阅读全文
posted @ 2017-11-30 09:37 PHP`reader 阅读(848) 评论(0) 推荐(0) 编辑