Please i need someone who can help me Display Date from Mysql which is in format
YYYY/MM/DD to DD/MM/YYYY the code below sends data to mysql but when i`m displaying date it comes in YYYY/MM/DD.
<?php
include"config.php";
$comment=$_POST['comment'];
$news_id=$_POST['news_id'];
$name=$_POST['name'];
//$rece_user=$_POST['rece_user'];
$query="INSERT INTO newscomment (name,news_id,time,comment,date) VALUES('$name','$news_id',CURTIME(),'$comment',CURDATE())";
$result=mysql_query($query);
if($result){
//echo"<i><b><font color=green size=5>your comment published successfully</font></b></i>";
//echo"message sent";
include"news.php";
}else{
echo"problem in sending";
}
?>
your help please!!!!