我是非常新的PHP,我正在尝试通过它。我有一个PHP项目,没有写在我的电脑上,我导入到netbeans,我也设置我的MySQL数据库并连接netbeans,因为我在netbeans上运行项目,我也在使用代码点火器框架。 当我尝试注册时,它不会注册我,这意味着我的项目没有在我的本地服务器上看到数据库...任何人都知道我能做什么?我需要更改项目中的某些设置吗?我在netbeans上测试了我的数据库连接,它正在运行。
答案 0 :(得分:0)
你可以在php脚本中试试这个:
$db = mysqli_connect(host,username,password,dbname);
在框架中,数据库连接通常在配置文件中完成。我不知道代码点火器,但在Yii框架中,它在/config/main.php中完成,看起来像这样:
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=databasename',
'emulatePrepare' => true,
'username' => 'username',
'password' => 'password',
'charset' => 'utf8',
),
答案 1 :(得分:0)
对于代码ignitior,请阅读本指南以连接到数据库:
http://ellislab.com/codeigniter/user-guide/database/connecting.html