require './config/config.php';
require './config/ac_bd.php';
$ssql="SELECT * FROM noticias ORDER BY asunto";
$result=mysql_query ($ssql);
while ($row=mysql_fetch_array($result)){
// $i = $row['id'];
$f1 = $row['imagen'];
echo " | ". $row['asunto'] ."
". $row['cuerpo'] ."
mas ... |
| ";
}
mysql_free_result($result);
?>
|