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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.