hi,
I fetch a row from an MSSQL db with a field that's of type date. I'm returned
i.e. Oct 15 2003 12:00AM.
code:
$test = mssql_fetch_row ($resultmail);
echo $test[0];
I want only to get the date returned and not the time i.e. Oct 15 2003.
Any clever way of doing that?
obscurr
I fetch a row from an MSSQL db with a field that's of type date. I'm returned
i.e. Oct 15 2003 12:00AM.
code:
$test = mssql_fetch_row ($resultmail);
echo $test[0];
I want only to get the date returned and not the time i.e. Oct 15 2003.
Any clever way of doing that?
obscurr
Comment