开发者

php returns different mysql result

I have just moved my host to another machine but now a problem has occured. I get different mysql results from php. To be more spefecific, php returns the last result when i got back-up. I am checking database via mysql console but there are new entries. But php continues to return the old results. What do i need 开发者_如何学Goto do fix this?

P.S i can download php files which are on my new host. I can see the source code. Weird...

Thank you.


  1. Your php might still be connecting to the old database
  2. If you can download the php files, your server isn't set up to run PHP and/or has a mis-configured .htaccess file


Check your database connection code.

It's possible that you're connecting to a remote host, rather than 'localhost':

$mysql_connection = mysql_connect('mysql.example.com', 'user', 'pass');

There is another possibility, different databases:

mysql_select_db('using_old_db', $mysql_connection);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜