$letter='';

$while($row=mysql_fetch_array($result))
{
if($letter!=$row[name][0])
{
echo $row[name][0].'<br>';
$letter=$row[name][0];
}
echo $row[name].'<br>';
}


Op maandag 09 juni 2003 12:41, schreef u:
> I am dispalying data from mysql database using the codes below:
>
> $while($row=mysql_fetch_array($result))
> {
> echo $row[name];
> }
>
> How can i format the above data in this format as shown below? in
> alphabetical order
>
> A
> ---------------------------------------------------------------------------
>----------------------------click to go up Apple
> Armchair
>
> B
> ---------------------------------------------------------------------------
>----------------------------click to go up Basket
> Baseball
>
> C
> ---------------------------------------------------------------------------
>----------------------------click to go up Car
>
>
> ............................
> and so on
>
>
> any suggestions??
>
> Many thanks,
> awlad
>
> _______________________________________________________________________
>
> Sheridan Phoenix Company
> The Business Centre  Kimpton Road  Luton  Bedfordshire  LU2 0LB
>
> Email:      [EMAIL PROTECTED]
> Phone:      01582 522 330
> Fax:        01582 522 328
> _______________________________________________________________________
>
> This electronic transmission is strictly confidential and intended
> solely for the addressee.  If you are not the intended addressee, you
> must not disclose, copy or take any action in reliance of this
> transmission.  If you have received this transmission in error it would
> be helpful if you could notify The Sheridan Phoenix Company Ltd as soon
> as possible.
>
> Any views expressed in this message are those of the individual sender,
> except where the sender specifically states them to be the views of The
> Sheridan Phoenix Company Ltd.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to