944,131 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 1467
  • PHP RSS
Mar 7th, 2006
0

mysql php problems

Expand Post »
Hi everyone. I've only really just started using php and I've been trying to use it in conjunction with mysql. I keep getting an error though when trying to access the result set returned by performing a query on the database. I've performed queries on the database outwith php, and it correctly returned the correct details. Here's the code for it:

<?php
$dbh=mysql_connect ("localhost", "myusername", "mypassword") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("ababoc_filmlistings");

$sql = 'SELECT DISTINCT title FROM Listing LIMIT 0, 30 ';
$rs = mysql_query($sql);

$row = mysql_fetch_row($rs); // line 24
echo $row[0];

?>


but I end up with the error:

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/ababoc/public_html/test/index.php on line 24

I'm really not sure what I could be doing wrong here. Any help would be much appreciated.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Ababo is offline Offline
2 posts
since Mar 2006
Mar 7th, 2006
0

Re: mysql php problems

I think definitly the problem is in SQL statment , check the name of the table and its fields , try adding some debugging code
Reputation Points: 10
Solved Threads: 0
Newbie Poster
ammcom is offline Offline
3 posts
since Mar 2006
Mar 7th, 2006
0

Re: mysql php problems

Quote originally posted by ammcom ...
I think definitly the problem is in SQL statment , check the name of the table and its fields , try adding some debugging code
I'm pretty positive that the SQL statement is ok. I've tried a number of statements instead of the one I gave, all of which worked when entered directly via phpMyAdmin. I fear that it might be something silly though. That's what it always turns out to be. :-|
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Ababo is offline Offline
2 posts
since Mar 2006
Mar 7th, 2006
0

Re: mysql php problems

All I can do is expand on what ammcom already told you. Do something like this:
[PHP]

if (!$dbh = mysql_connect ("localhost", "myusername", "mypassword")) {
die ('I cannot connect to the database because: ' . mysql_error());
}

if (!$ret = mysql_select_db ("ababoc_filmlistings")) {
die("db selection failed: ".$mysql_error());
}

$sql = 'SELECT DISTINCT title FROM Listing LIMIT 0, 30 ';
echo "<hr />".$sql."<hr />\n";

if (!$rs = mysql_query($sql)) {
die("db query failed: ".mysql_error());
}

if (!$row = mysql_fetch_row($rs)) {
die("mysql fetch failed: ".mysql_error());
}

echo $row[0];

[/PHP]
If you get an error regarding the query failing, copy and pasted the SQL statement and run it directly against the database--making sure you choose "ababoc_filmlistings" as your db.
Reputation Points: 36
Solved Threads: 6
Posting Whiz
Troy is offline Offline
354 posts
since Jun 2005

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: "system" function
Next Thread in PHP Forum Timeline: phwhat?





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC