\n";
$query = "INSERT INTO $mytable(ID, post_title, post_content, post_author, post_date, guid) VALUES ('$number', '$title', '$content', '$author', '$date', '$url')";
//echo "$query
";
$results = $base->queryexec($query);
if(!$results)
{
echo "$mytable not updated
\n";
exit(0);
}
echo "Data entered into $mytable successfully
\n";
?>