« Return to Thread: Date formatting question

Re: Date formatting question

by Phpster :: Rate this Message:

Reply to Author | View in Thread

See the date function

Http://www.php.net/date

Bastien

Sent from my iPod

On Apr 8, 2009, at 21:41, Jack Lauman <jlauman@...> wrote:

> I need to reformat the output of the 'dates' field from '2009-04-08'  
> to 'Wed. Apr. 8th'. Any help would be appreciated.
>
> Thanks.
>
> ---
>
> for ($counter = 0; $counter < mysql_num_rows($resultID); $counter++);
>
> while ($row = mysql_fetch_object($resultID))
> {
>    print "<tr>";
>    print "<td>" . $row->dates . "</td>";
>    print "<td>" . $row->times . "</td>";
>    print "<td>" . $row->am_pm . "</td>";
>    print "<td>" . $row->height . "</td>";
>    print "<td>" . $row->cond . "</td>";
>    print "</tr>";
> }
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

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

 « Return to Thread: Date formatting question