hi ,
I need a script that sorts my links (thumbs + text) by date .
Anyone knows a good one ?
I need a script that sorts my links (thumbs + text) by date .
Anyone knows a good one ?
$time_now = mkdate();
$sql = "INSERT INTO link SET title='$title', url='$url', date='$time_now'";
if(mysql_query($sql) {
echo "New link successfully added";
} else {
echo "Could not add new link";
}

Comment