lunes, 16 de mayo de 2011

PHP: Desplegar datos de cualquier tabla MySQL


Si alguna vez necesitan hacer una página rápida de prueba para desplegar los datos de cualquier tabla MySQL, aquí les dejo esté código que encontré en este post. Solamente hay que cambiar los datos de conexión y la tabla que desean desplegar.

<?php

//MyDB represents the name of your database.
//MyTable represents the name of your table inside the database.

mysql_connect("localhost","my_user","my_pass") or die("Unable to connect to SQL server");
@mysql_select_db("my_database") or die("Unable to select database");


$result = mysql_query("select * from MY_TABLE limit 500");
?>
<table border="1">
<tr>
<?php


while ($field=mysql_fetch_field($result)) {
echo "<th>";
echo "$field->name";
echo "</th>";
}
echo "</tr>";

while ($row = mysql_fetch_row($result)) {
echo "<tr>";
for ($i=0; $i<mysql_num_fields($result); $i++) {
echo "<td>";
if (isset($row[$i]))
echo "$row[$i]";
else
echo "-";
echo "</td>";
}
echo "</tr>\n";
}

echo "</table>";

?>

No hay comentarios:

Publicar un comentario