thinkphp 连接mysql数据库

首先在PHPmyadmin创建数据,具体见

点击这边创建数据

在Cof  的config.php 中插入下面的代码, 具体服务器配置具体填写:

'配置值'
	// 添加数据库配置信息
'DB_TYPE'   => 'mysql', // 数据库类型
'DB_HOST'   => 'localhost', // 服务器地址
'DB_NAME'   => 'thinkphp', // 数据库名
'DB_USER'   => 'root', // 用户名
'DB_PWD'    => '', // 密码
'DB_PORT'   => 3306, // 端口
'DB_PREFIX' => 'think_', // 数据库表前缀
);
?>

配置好了这个文件之后,在C层的indexaction.class.php 中插入下面的代码

data = $Data->select();
//      $this->display();
//		$user=new UserModel();
//		echo $user->getinfo();
        $db = M("tinyphp"); // 实例化show对象      
        $data = $db->find();//读取一条数据
        dump($data);//打印数据
    }
}
打开你的localhost即可查看你的数据

that'all   thank you !

 

你可能感兴趣的:(thinkphp)