Just use this code (modified of course, but to test it out then use it for what you are wanting and mrmigu gave you a link to.
<?php
// Users entry is below as $userdate just so you
// can play with the function.
$userdate= "31 Jan 2006 5:20PM";
// Call the fix_date() function
fix_date($userdate);
function fix_date($my_date){
//First : Convert the date to time
$my_time = strtotime($my_date);
echo $my_time."<br>";
//To display it as day of month with no 0's use j
$newdate=date('j/m/Y',$my_time);
echo date('j/m/y',$my_time);
//This will give you your new date in your desired
//format with no 5:20PM (or any time mention, just the date)
}
?>