Hi all when i write $d=date(y-d-m); then i stored it on mysql ....after that when i display all table contents it show me the date 0000-00-00 so, what's the wrong? thx alot
$d=date(y-d-m);
should be:
$d = date("y-d-m");
tanks alot matto