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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.