Me he instalado el Apache, el php y el mysql, las ultimas versiones de todos.
Creo que todo funciona bien, y en la consola de mysql, me hice una pequeña tabla para hacer una prueba. Al crear el archivo php, luego no se ve en el navegador... alguien me echa un cable por favor??
Código :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.1 Transitional//ES"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>PHP-MYSQL</title> </head> <body> <h3>Listado Telefonico:</h3> <?php mysql_connect("localhost"); $query = "SELECT nombre, telefono FROM mitabla"; $result = mysql_db_query("ejemplo", $query); while ($fila = mysql_fetch_objeto($result)){ $nombre = $ fila->nombre; $telefono = $ fila->telefono; echo "<p>$nombre, $telefono</p>"; } ?> </body> </html>
Muchas gracias!