Jump to content

[SOLVED] Query a Query


eightFX

Recommended Posts

Is it possible to query a query using PHP and MySQL? Better yet is there a way to get this to work the way I want:

 

$query = mysql_query("SELECT * FROM tester ORDER BY date DESC, name LIMIT 10 ");

while($result = mysql_fetch_array($query)) {       

echo '' . $result['name'] . ' - ' . $result['date'] . '';

}

 

I want to pull the ten most recently added people (tracked with date) but sort them alphabetically for the output...

 

Thanks for any insight, major brain cramp on this one...

Link to comment
https://forums.phpfreaks.com/topic/52369-solved-query-a-query/
Share on other sites

That does not seem to work in my code, this is what I used:

 

 

$query = mysql_query("SELECT * FROM (SELECT * FROM tester ORDER BY date DESC LIMIT 10) ORDER BY name");

while($result = mysql_fetch_array($query)) {       

echo ' ' . $result['name'] . ' - ' . $result['date'] . ' ';	 

}

 

The error I receive is:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in test.php on line 17

 

Line 17 is: while($result = mysql_fetch_array($query)) {     

Link to comment
https://forums.phpfreaks.com/topic/52369-solved-query-a-query/#findComment-258428
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.