Hi all
I am trying to change the date format from my mysql database the format there is yyyymmdd, and the date I want to show them in is dd-mmm-yyyy
$result = mysql_query('SELECT * FROM `fixtures` ORDER BY `date`', $con) or die(mysql_error());
if(mysql_num_rows($result) < 1)
{
echo('<tr class="profiletext"><td colspan="7">Sorry, no results were found.</td></tr>');
}
else
{
while($row = mysql_fetch_array($result))
{
if ($row[HomeAway]=="Home") {
echo ('<tr><td>'.$row[Date].'</td><td><b>Yardley</b></td>');
echo ('<td align="center">'.$row[yardley_goals].'-'.$row[opposition_goals].'</td><td>'.$row[Opposition].'</td>');
echo ('<td></td><td></td><td><a href="http://www.yardleyheroes.co.uk/matchfines.php?match_id='.$row[match_id].'">View Fines</a></td></tr>');
}
else{
echo ('<tr><td>'.$row[Date].'</td><td>'.$row[Opposition].'</td>');
echo ('<td align="center">'.$row[opposition_goals].'-'.$row[yardley_goals].'</td><td><b>Yardley</b></td>');
echo ('<td></td><td></td><td><a href="http://www.yardleyheroes.co.uk/matchfines.php?'.$row[match_id].'">View Fines<a></td></tr>');
}
}
}
mysql_close($con);
Can anyone point me in the right direction as I am trying to teach myself PHP and MySQL