PHP MYSQL ヘルプ! ! ! !
ThinkPHP Framework
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_',
アクションの作成:
function get_data()
{
$ db=M ('ユーザー');
dump($db->where('id=1')->select());
}