Io ho risolto così:
codice:
$news_title = $_POST['news_title'];
$news_text = $_POST['news_text'];
$news_time = date("l dS of F Y h:i:s A");
$news_date = mktime($news_time);
codice:
$qinsert = "INSERT INTO lost_news (news_title, news_date, news_text, news_time)
VALUES ('$news_title', $news_date, '$news_text', '$news_time')";
mysql_query($qinsert,$conn) or die("Errore nella Query:" . mysql_error() );
e per stampare..
codice:
$qselect = 'SELECT * FROM lost_news ORDER BY news_date DESC LIMIT 0, 50';
E' una niubbata? :|