My script currently works; printing the date that it extracts from mysql
table.
It prints the date as:
2004-01-29
$mailed=$row["mailed"];
$payment=$row["payment"];
$ID=$row["ID"];
echo "<TR><TD>$mailed</TD><TD>$payment</TD></TR>";
I'm trying to change the format so that the date appears as:
January 29, 2004
$mailed=$row["mailed"];
$payment=$row["payment"];
$ID=$row["ID"];
$thisdate=date("F/d/Y",$row->mailed);
echo "<TR><TD>$thisdate</TD><TD>$payment</TD></TR>";
This gives the right format, however, it seems to be trying to do the
current date rather then my submitted date?
Any idea how I do this?
-----------------------------------------------------------------
Jim Gronquist
Computer Network and Programming Analyst
Office of the Bursar
Indiana University
812.856.3026 x6-3026
[EMAIL PROTECTED]