三:安装php
1:建立一个index.php的测试页面
[root@ html]# cd /var/www/html/
[root@ html]# ll
total 4
-rw-r--r-- 1 root root 24 Mar 9 01:09 index.html
[root@ html]# mv index.html index.php
[root@ html]# ll
total 4
-rw-r--r-- 1 root root 24 Mar 9 01:09 index.php
[root@ html]# vim index.php
hello the world!!!!!!!!
phpinfo();
?>
注意:在这里我们知道了php是apache的一个模块,这样的话可以减少对系统资源的占用
Cat /etc/httpd/conf.d/php.conf
Cd /etc/httpd/modues/libphp5.mode
2:重新启动apache的服务
[root@ html]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
3:在客户机上进行测试
4:修改 /var/www/html/index.php 的首页
[root@ ~]# vim /var/www/html/index.php
hello the world!!!!!!!!
$link=MySQL_connect('127.0.0.1','root','');
if($link)
echo "ok";
else
echo "not ok";
?>
再次进行测试,验证php和mysql之间的连接是否正常
这里我们看到我们已经连接成功,但是这样管理mysql的话会比较麻烦,安全性也不是很高。