PHP MYSQL 救命呀!该如何处理
程序员文章站
2022-05-21 20:16:08
...
PHP MYSQL 救命呀!!!!
ThinkPHP框架
public function select() {
$db_dsn = "mysql://root:guozhixin@localhost:3306/my_table";
$db = new Db($db_dsn);
echo $db->execute("select * from think_person");
}
http://127.0.0.1/iBaby/iBaby/index.php/Index/select
数据库设置全对,怎么就是访问以后是一片空白呢?有人能帮帮我吗?
------解决方案--------------------
echo $db->execute("select * from think_person");
你改成: dump($db->execute("select * from think_person")); 试试。
++++++++++++++++++++++++++++++++++++++++
如下为数据库配置:
//'配置项'=>'配置值'
'DB_TYPE'=>'mysql',
'DB_HOST'=>'localhost',
'DB_NAME'=>'test',
'DB_USER'=>'root',
'DB_PWD'=>'123456',
'DB_PORT'=>'3306',
'DB_PREFIX'=>'think_',
写一个Action:
function get_data()
{
$db=M('User');
dump($db->where('id=1')->select());
}
ThinkPHP框架
public function select() {
$db_dsn = "mysql://root:guozhixin@localhost:3306/my_table";
$db = new Db($db_dsn);
echo $db->execute("select * from think_person");
}
http://127.0.0.1/iBaby/iBaby/index.php/Index/select
数据库设置全对,怎么就是访问以后是一片空白呢?有人能帮帮我吗?
------解决方案--------------------
echo $db->execute("select * from think_person");
你改成: dump($db->execute("select * from think_person")); 试试。
++++++++++++++++++++++++++++++++++++++++
如下为数据库配置:
//'配置项'=>'配置值'
'DB_TYPE'=>'mysql',
'DB_HOST'=>'localhost',
'DB_NAME'=>'test',
'DB_USER'=>'root',
'DB_PWD'=>'123456',
'DB_PORT'=>'3306',
'DB_PREFIX'=>'think_',
写一个Action:
function get_data()
{
$db=M('User');
dump($db->where('id=1')->select());
}
相关文章
相关视频
上一篇: 搜集开发amh面板URL重写模块
下一篇: PHP读取XML数据中CDATA内数值
推荐阅读
-
php传值给ORACLE存储过程,该如何处理
-
You must chmod 755 concrete/libraries/3rdparty/htmldiff.py and disable PHP safe,该如何处理
-
php递归,该如何处理
-
PHP 数组,该如何处理
-
php post请求和jquery中post请求有什么不同吗?该如何处理
-
php socket 处理不过来数据流,该如何避免(好像是阻塞了)
-
PHP过滤代码,正则表达式过滤该如何处理
-
这个SQL里的函数是mysql函数还是php函数,函数意思是,该怎么处理
-
php 递归函数 求解,该如何处理
-
PHP中一个文件调用另一个文件类的方法,然后输出出现乱码,求解!该如何处理