todo bien??
estoy haciendo una consulta a la BD y quiero mostrarla ni bien ingreso al sitio. el codigo que tengo me devuelve que no hay nada para mostrar...
nose en que le estoy errando.
Código PHP:
<!DOCTYPE html>
<html>
<head>
<meta charset="iso-8859-1" />
<link rel="stylesheet" href="../estilos.css" />
</head>
<body>
<?php
$link = mysqli_connect("localhost", "root", "", "recetario");
$result = mysql_query($link, "SELECT id, nombre, autor, receta FROM recetas", $link);
if($row = mysqli_fetch_array($result)){
echo("<table class=\"conborde\"> \n");
echo(" <tr> \n");
echo(" <td><b>Id</b></td> \n");
echo(" <td><b>Nombre</b></td> \n");
echo(" <td><b>Autor</b></td> \n");
echo(" <td><b>Receta</b></td> \n");
echo(" </tr> \n");
do {
echo(" <tr> \n");
echo("<td>".$row["id"]."</td> \n");
echo("<td>".$row["nombre"]."</td> \n");
echo("<td>".$row["autor"]."</td> \n");
echo("<td>".$row["receta"]."</td> \n");
echo(" </tr> \n");
}while ($row = mysqli_fetch_array($result));
echo("</table> \n");
}else{
echo ("¡La tabla de Base de Datos esta vacía!");
}
?>
</body>
</html>