Jump to content

Stevan

Members
  • Posts

    31
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling
  • Location
    Coral Springs Fl.

Stevan's Achievements

Member

Member (2/5)

0

Reputation

  1. I have a script that I want to have it add in Alpha order . I can not figure out how to do it a bit beyond what I have learned ##----------------------------------------------------------------------------------- ## GENERATING CATEGORY LIST -- START HERE ##----------------------------------------------------------------------------------- $dir = ''; if (mysql_num_rows($rs) > 0) { $dir = '<tr><td align=\'left\' valign=\'top\' width=\'100%\'><ol>'; while (list($id,$name,$image) = mysql_fetch_row($rs)) { $url = trim(strtolower($name)).'.html'; $url = str_replace(' ','',$url); if ($image != '') $dir .= "<p><li><a href='$url'><img src='images/$image' border=0><br><strong>$name</strong></a></li></p>"; else $dir .= "<p><li><a href='$url'><strong>$name</strong></a></li></p>"; } $dir .= '</ol></td></tr>'; } return $dir; } ?> THXS Steve
×
×
  • 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.