I'm trying to get a database stored date echoed on a website. The problem is it won't show up.
This is the code piece getting the rows:
$row3 = mysql_fetch_array($result);
This is the piece declaring date to $actualdate:
$actualdate = $row3['date'];
This is the piece echoing the date:
echo $actualdate;
I'm sure I'm doing some damn mistake here, it's probably really easy for you other guys to solve. Thought you could tell me. 🙂