Fecha de Publicación |
Categoría |
Título |
Subtítulo |
Autor |
[insert_php]
$mysqli = new mysqli(«localhost», «donostilandia», «40mnd$23», «old-donostilandia»);
$sql = «SELECT * FROM donosti_noticia ORDER BY noticia_fecha_alta DESC»;
if (!$resultado = $mysqli->query($sql)) {
echo «Lo sentimos, este sitio web está experimentando problemas.»;
exit;
}
while ($fila = $resultado->fetch_assoc()) {
echo ‘
‘.$fila[«noticia_fecha_publicacion»].’ |
‘.$fila[«noticia_categoria»].’ |
‘.utf8_encode($fila[«noticia_titulo_busqueda»]).’ |
‘.utf8_encode($fila[«noticia_titulo»]).’ |
‘.utf8_encode($fila[«usernick»]).’ |
‘;
}
[/insert_php]
[insert_php]
$resultado->free();
$mysqli->close();
[/insert_php]