Web数据库实例
下一节我们开始学习一步步创建基于Web的数据库。首先,我们先建立数据库,并装入一些数据。完成这步后,我们就新建一些PHP 脚本,和数据库通信并看看全过程。
确认运行着MySQL服务器进程。如果没有的话,请手动启动它:
# /etc/rc.d/init.d/mysql start
现在我们以MySQL客户程序的管理员身份启动它,这次我们将看到需要输入密码的提示:
# mysql -u root -p
Enter password: newpassword
Welcome to the MySQL monitor. Commands end with ; or /g.
Your MySQL connection id is 13 to server version: 3.22.21
Type 'help' for help.
mysql>