Jump to content

Harfish

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Harfish's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Wow Barand! Thanks, that worked beautifully. But now I've discovered I've got another problem. I have another SQL query on that page that selects 2 names and generates a list. Up until a few weeks ago this list was horribly out of order because when I wrote the php initially I had neither the skill nor the time to fix that. Now I do and have the list sorted by first initial. [code]$today = date("Y-m-d"); $result = mysql_query("SELECT DISTINCT name1,name2 FROM names WHERE date>='$today' AND tjs='Y'",$db); $tjs =  array(); while ($myrow = mysql_fetch_array($result)) { $tj1 = $myrow['name1']; $tj2 = $myrow['name2']; array_push($tjs,$name1); array_push($tjs,$name2); } sort($tjs); foreach ($tjs as $value){ printf("<option value=\"$value\">$value</option>\n"); }[/code] But I can't for the life of my figure out how to sort this list by surname, which is the 3rd character of the name. Any suggestions?
  2. I'm not even sure if this is possible but here goes. I have a website that uses PHP to produce a list of names from a MySQL database. However, a basic design decision I made a long time ago seems to have some back to haunt me. The names in the database are in the format 'J Bloggs' and when these are sorted into alphabetical order they are sorted by first initial. Is there a simple way to sort these names by last name? I've tried a couple of things, but neither of those worked quite right. I've tried splitting the names into an associative array, eg J => Bloggs, but this didn't work because some of the last names are the same. Am I going to have to redesign my database? Or is it possible to sort and array by the third character of each value?
×
×
  • 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.