Home  >  Article  >  Backend Development  >  使用php时出现了no database selected的有关问题 求大神帮助

使用php时出现了no database selected的有关问题 求大神帮助

WBOY
WBOYOriginal
2016-06-13 12:19:271843browse

使用php时出现了no database selected的问题 求大神帮助
我在myadminphp中创建了名为flash的数据库  

下面是我的php代码

------解决思路----------------------
mysql_select_db("flash"); 需要放在mysql_query之前,以下两句交换一下位置就可以了。

mysql_select_db("flash");  // 先select db
mysql_query("set names 'utf8'"); // 再set names


------解决思路----------------------
mysql_query("set name'utf8'");

mysql_select_db("flash");

上面两个语句调换下位置,先选择数据库再set names

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