Jump to content

[SOLVED] Sorting data from a database


datalee100

Recommended Posts

I've tried to do this several times and things just seem to be getting uglier and uglier...  I have this code in place to show members:

 

<?php $result2=mysql_query("SELECT * FROM $tablename") or die(mysql_error());

while($row=mysql_fetch_array($result2)) {
echo "<tr><td>$row[tcgname]</td><td>$row[name]</td><td>$row[subject]</td><td><a href=\"$row[siteurl]\"><img src=\"$row[urlbanner]\" border=\"0\"></a></td></tr><tr><td><u>Description</u>: </td><td colspan=\"3\">$row[about]</td></tr><tr><td colspan=\"4\">--------------------------------------------------------</td></tr>"; }

 

But my goal is to change it so that it puts the list in alphabetical order by the row that has the tcg name in it or tcgname.  Is there a way to do this correctly?  Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/64947-solved-sorting-data-from-a-database/
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.