Aquí lo tienes
Código PHP:
<html>
<head>
</head>
<body>
<?
$db = new mysqli(el host, mi user, mi pass, la db);
$notice = $db->query("SELECT * FROM articles ORDER BY id ASC");
$totalRows = mysqli_num_rows($notice);
if($totalRows >0)
{
while($row=$notice->fetch_array())
{
echo $row['title']."<br>";
echo $notice['icon']."<br>"}} else{
echo "No se encontraros Noticias";
}
?>
</body>
</html>
Eso es todo