Possible Duplicate:
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select
This is what I have
<?php
mysql_select_db("my_db", $conn);
$result = mysql_query("SELECT name FROM card");
while($row = mysql_fetch_array($result))
{
echo $row['name'];
echo "<br />";
}
?>
and
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in D:\xampp\htdocs\UFSDBSearch.php on line 113
is what I'm getting. I have no idea what that means. I'm just trying to get it to echo out the names of the cards stored on that table. If I need to tell more info just let me know. Thanks for the help in advance.