mysql_query($ query)对查询不起作用我敢肯定是对的吗?

时间:2014-05-21 13:31:25

标签: php mysql sql

我在执行一些基本代码时遇到了一些问题。首先,我在Mac上使用MAMP作为服务器,并使用表"消息"创建了数据库"按钮"。

Basic table

我不明白哪个部分出了问题 - 我认为它是mysql_query($ query),因为它在页面上返回失败。

<?php
// Create connection
$link = mysql_connect('localhost', 'root', 'root');
mysql_select_db('button');

// Execute query
$query = "SELECT * FROM messages";

$message_1 = mysql_query($query);

if ($message_1 == false) 
    echo "failure";
else 
    echo "success";
?>

对不起,如果这看起来很基本,但我是PHP + SQL编程的新手,并且会很感激修复这个bug的任何提示。

谢谢!

0 个答案:

没有答案