从raspberry pi连接数据库

时间:2014-07-12 13:59:00

标签: php mysql linux raspberry-pi raspbian

我想在我的终端上的树莓派上回显或打印数据库中的内容。我安装了MySql客户端和PHP5。我想在终端中运行一个php文件,所以我创建了一个文件:

<?php

$con = mysqli_connect("mysql51-025.wc1","username","password","dbname")
//first one is hostname

if(mysqli_connect_errno()){
echo "failed to connect with error: ". mysqli_connect_error();
}

?>

当我在我的覆盆子皮终端上运行时

  

pi @ raspberrypi~ $ php database.php

我会得到这个回复:

  

PHP警告:mysqli_connect():( hy000 / 2005):未知的MySQL服务器主机   'nameofmyhostinphpfile'(25)位于第8行的/home/pi/database.php中   无法连接错误:未知的MySql服务器主机'hostname'

我的问题是我如何才能使这种联系起作用。我是否能够执行查询并在我的pi上回显或打印这些结果并在shell脚本中使用这些结果?

谢谢!

0 个答案:

没有答案