Código PHP:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<link href="../../../1/administrator/templates/joomla_admin/css/theme.css" rel="stylesheet" type="text/css" />
<link href="../../../1/administrator/templates/joomla_admin/css/template_css.css" rel="stylesheet" type="text/css" />
</head>
<?
//conecto con la base de datos
$conn = mysql_connect("++++,"++++","++++");
mysql_select_db("++++++",$conn);
//Hacemos el Select
$ssql = "SELECT * FROM noticias";
//Ordenamos las Noticias para que se vean las mas recientes
$ssql .= " ORDER BY id desc";
//tomo el juego de resultados
$resultid = mysql_query($ssql,$conn);
?>
<body>
<table width="814" border="0" align="center">
<!--DWLayoutTable-->
<tr>
<th colspan="4" valign="top"><img src="../imaga/noticias.jpg" width="808" height="47" /></th>
</tr>
<tr>
<th width="5"> </th>
<th colspan="2" valign="top"><?
//muestro los datos en un bucle
$num_filas = 0;
while ($damefila=mysql_fetch_object($resultid))
{
?></th>
<th width="27"> </th>
</tr>
<tr>
<th> </th>
<th width="610" valign="top" class="tabheading"><div align="right"><font face="Arial" size="2" color="#000000"><?echo strip_tags($damefila->titulo)?> </font></div></th>
<th width="154" valign="top" class="error"><font face="Arial" size="2"><?echo strip_tags($damefila->fecha)?></font></th>
<th> </th>
</tr>
<tr>
<th> </th>
<th valign="top" class="quote"><div align="justify" class="moduleheading"><font face="Arial" size="2"><?echo strip_tags($damefila->mensaje)?></font></div></th>
<th valign="top"><div align="left"><img src="fotos/<?echo strip_tags($damefila->foto)?>" alt="muestra" width="105" height="108" border="0" align="right" /></div></th>
<th> </th>
</tr>
<tr>
<td></td>
<td colspan="2" valign="top" class="adminheader"><span style="margin-top: 0; margin-bottom: 0">
<?
$num_filas++;
} //termina el bucle while
?>
</span></td>
<td></td>
</tr>
<tr>
<td></td>
<td> </td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>