hey all 🙂 having a bit of trouble displaying a date whilst using mysql_fetch_row and was wondering whether someone would be able to help me please 🙂
Heres my code:
$recent = mysql_fetch_row(mysql_query("SELECT *, DATE_FORMAT(date, '%d/%m/%Y') AS date2 FROM OtherGigs ORDER BY dateadded DESC, timeadded DESC LIMIT $i, 1", $connection));
$bands = $recent[1];
$venue = $recent[2];
$gigdate = $recent['date2'];
When i echo $gigdate however... its equal to null.
Anyone see whats wrong please?? thanks 🙂
BIOSTALL