Jump to content

Simple JOIN problem in a SELECT statement


ifis

Recommended Posts

Hey guys, I'm having trouble with joining two tables in a SELECT.  Here is the code:

$sql = "SELECT*FROM member JOIN blog";
$result=mysql_query($sql);		
while($row = mysql_fetch_array($result)){
    echo" <tr>
          <td><h3>$row[firstName] $row[lastName]</h3></td>";
    echo "<td>$row[Date]</td>
          <td>$row[Title]</td>
        </tr>";
		}
    echo "</table>";

I get the error:Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource.

Any ideas?  I'm sure it is something simple that I am just missing.  Thanks.

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.