Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/07/2015, 17:06
diegoguerrero
 
Fecha de Ingreso: diciembre-2014
Ubicación: Madrid
Mensajes: 274
Antigüedad: 10 años, 3 meses
Puntos: 5
Respuesta: ¿Qué puede estar fallando?

Código PHP:
Ver original
  1. <?php
  2. //Conexión a MySQL
  3. $conexionMySQL = mysqli_connect ($host_name, $user_name, $password);
  4. $host_name  = "localhost";
  5. $database   = "db";
  6. $user_name  = "root";
  7. $password   = "";
  8.  
  9. mysqli_select_db ($database, $conexionMySQL);
  10.  
  11. $connect = mysqli_connect($host_name, $user_name, $password, $database);
  12.     {
  13.     echo "Error al conectar con servidor MySQL: " . mysqlii_connect_error();
  14.     }
  15. ?>
  16. <head>
  17. <meta charset="utf-8"/>
  18. </head>
  19. <body>
  20. <table width="100%" align="center" style="text-align:center; vertical-align:middle; border-collapse:collapse" border="1">
  21. <?php
  22. $result = mysqli_query("SELECT nombre,apellidos,ident,email FROM tabla", $conexionMySQL);
  23. echo '<tr align="center" valign="middle"><td width="25%">Nombre</td><td width="25%">Apellidos</td><td width="25%">Identificación</td><td width="25%">Correo electrónico</td></tr>';
  24. while ($row = mysqli_fetch_array($result)){
  25.        echo '<tr align="center" valign="middle"><td width="25%">'.$row["nombre"].'</td><td width="25%">'.$row["apellidos"].'</td><td width="25%">'.$row["ident"].'</td><td width="25%">'.$row["email"].'</td></tr>';
  26. }
  27. ?>
  28. </table>
  29. </body>

Ahora tengo este código y sigue sin funcionar.