Si me pueden ayudar se los agradecería, aquí está el código también:
Código PHP:
<?PHP
include ("../panel/settings.php");
?>
<?
$resultado = mysql_query("SELECT * FROM articles ORDER BY id ASC LIMIT 0,10");
while($row=mysql_fetch_array($resultado))
{
echo "$row[title]"; echo "<br>"; echo "$row[id]"; echo "<br>"; echo "$row[category]"; echo "<br>"; echo "$row[content]";
echo "<br>";
echo "<br>";
}
?>