Home >Backend Development >PHP Tutorial >mysql数据驱动,该怎么解决

mysql数据驱动,该怎么解决

WBOY
WBOYOriginal
2016-06-13 10:25:031203browse

mysql数据驱动
mysql不会用,现在的问题是数据驱动不管用,程序连不上数据库,谁可以帮忙远程调下,分数送上

------解决方案--------------------
php链接不上数据库?server? 还是本地的调试环境?要是server 可以来个帐号,要是本地那就没办法了,忍受不了那种一卡一卡的感觉
------解决方案--------------------
看看php.ini里面的配置是否正确
------解决方案--------------------
1、在php.ini里看开了mysql扩展没
2、mysql服务是否开启
3、代码是否有误(包括用户名、密码等等)
------解决方案--------------------
你贴一下你的链接代码?还有数据库有没有成功启动?
------解决方案--------------------

PHP code
<?php $con = mysql_connect("localhost","user","pwd");if (!$con)  {  die('Could not connect: ' . mysql_error());  } ?><br><font color="#e78608">------解决方案--------------------</font><br>查看phpinfo.php文件<br><font color="#e78608">------解决方案--------------------</font><br>伱选择下数据库看看:<br>
PHP code
$conn=mysql_connect("localhost","root","11111")or die("错误信息:".mysql_error());$db=mysql_select_db("shopdemo");  //选择要连接的数据库mysql_query("set names gb2312");   //执行下<div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn