Jump to content

more than 2 tables? surely?


Boxerman

Recommended Posts

Hi guys,

 

i've got a problem thats why im posting...

 

On my page i want to grab information from two different tables in the same database...

 

i used this:

 

/* Select all pilots */
$query = "SELECT * FROM `pilots` `positions` ORDER BY pilot_num ASC, WHERE last_update > DATE_SUB( NOW() , INTERVAL 15 MINUTE ) ORDER BY IATA";
$result = mysql_query($query);

/* Determine the number of pilots */
$number = mysql_numrows($result);

 

i now have this error...

 

 

Warning: mysql_numrows(): supplied argument is not a valid MySQL result resource in /home/vipersim/public_html/jamesm/pilot_roster.php on line 36

 

to to help line 36 is

 

$number = mysql_numrows($result);

 

but before i added the code at the top it worked fine.. so how do i fix this?

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/96764-more-than-2-tables-surely/
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.