");
}
if (!$db_selected)
{
die ('blog.php: Kann ' . $mysql_db . ' nicht benutzen : ' . mysql_error() . "
");
}
//mysql_select_db("mobileblog", $connection);
$result = mysql_query("SELECT * FROM posts order by post_id");
while($row = mysql_fetch_array($result))
{
echo "- " . $row['post_content'] . "
" . $row['post_date'] . "
Delete ";
}
mysql_close($connection);
?>