I've seen a couple of threads on this, but just don't get it...
I have a page to display query results on a table, and want to display the date according to european standards, that is DD/MM/YYYY.
Here are my current statements:
$f_date = $row["date"];
and
echo "<tr><td style=\"font-weigth:bold;\">Date</td><td width=\"400\">$f_date</td></tr>";
Where and what is the correct syntax?
:confused: