Nginx-10.php-nginx-mysql联动

Posted wang-hongwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx-10.php-nginx-mysql联动相关的知识,希望对你有一定的参考价值。

一、nginx+php
nginx配置文件中增加以下内容

cat /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.example.com;
location / {
root html;
index index.html index.htm;
}
location ~ .*.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}

创建phpinfo

echo "<?php phpinfo(); ?>" >/usr/local/nginx/html/test_info.php

重启nginx

nginx -t
nginx -s reload

访问www.example.com/test_info.php,显示php配置信息则表示nginx与php联通(提前启动好php-fpm)

二、php+mysql
创建mysql测试页面

cat /usr/local/nginx/html/test_mysql.php
<?php
$link_id=mysql_connect(‘localhost‘,‘root‘,‘123456‘) or myssql_error();
if($link_id){
echo "mysql successful !!!";
}else{
echo mysql_error();
}
?>

访问www.example.com/test_mysql.php,显示自定义的成功提示信息则表示php与mysql联通(提前启动好mysql)

以上是关于Nginx-10.php-nginx-mysql联动的主要内容,如果未能解决你的问题,请参考以下文章

SQL 级联删除与级联更新的方法

如何理解access设置中的“级联更新”和“级联删除”?

sql级联更新和级联删除不起作用

sql中级联删除,级联更新是怎么理解的?

sql中级联删除,级联更新是怎么理解的?

静态联编与动态联编