Is there any php function or some hack that allows to translate the date into national language? In my case it is Russian. Because that code and strtotime () gives you the name of month in English.
CODE
$month = date('F');
$month = htmlspecialchars(strip_tags($_POST['month']));
$realtime = strtotime($month."".$date."".$year."".$time);
$sql = "INSERT INTO chronic (time, title, entry) VALUES ('$realtime', '$title', '$entry')";
$month = htmlspecialchars(strip_tags($_POST['month']));
$realtime = strtotime($month."".$date."".$year."".$time);
$sql = "INSERT INTO chronic (time, title, entry) VALUES ('$realtime', '$title', '$entry')";
Thanx