Steven Kallstrom wrote:

Hello all...

I'm embarrassed by this one... I think it should work but it isn't...

$dbh = mysql_connect("localhost", "login", "password") or
die('cannot connect to the database because: ' . mysql_error());
mysql_select_db("database");
$query = 'SELECT * FROM cities';
$result = mysql_query($query);

Try this instead; $result = mysql_query($query) or die("Query died: " . mysql_error());

Cheers!

-Michael


while ($row = mysql_fetch_row($result)) { echo ('<tr> <td class="city">' . $row[0] . ', ' . $row[1] . '</td> <td>' . $row[2] . '</td> <td>' . $row[3] . "</td> </tr>\n"); }

getting this error:

*Warning*: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in...

so... is the problem with the $query?
I don't see anything wrong (assuming my login and database selection is correct)
what are the common errors here?


Thanks,

SJK
**






-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to