Jump to content

Simple Select Issues


sidorak95

Recommended Posts

Hi,

 

I've been trying to get a simple select statement to work in my code, and I just don't know why it returns an error.

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /adoptnow.php on line 13

 

And the code is:

<?php

$con = mysql_connect("localhost","***","***");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("a8784hos_pets2", $con) or die ("Couldn't select database because: ".mysql_error());
$query = "SELECT * FROM species WHERE available = 1";
$petcrap = mysql_query($query) or die ("Error in number one query: $query. ".mysql_error());
$petinfo = mysql_fetch_array($petcrap);
while ($row = mysql_fetch_array($petinfo)){
echo $row['petid'];
}

?>

I've read that this is usually because you haven't selected the database or it can't find the table, but I've run the sql query in phpmyadmin, and it comes back perfectly.

 

I honestly have no idea what I'm doing wrong right now and would appreciate some help. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/237057-simple-select-issues/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.