Oh, si hay alguna manera de recorrer estos registros colo los recibo asi asciativo, es decir, como los puedo recorrer en forma asociativa??? y mostrarlos...ok...
Con MySQL si funciona correctamente, aqui esta el codigo..
Código PHP:
<?php
// open database connection
@mysql_connect('localhost','root','') or die("ERROR--CAN'T CONNECT TO SERVER");
@mysql_select_db('links_db') or die("ERROR--CAN'T CONNECT TO DB");
// SQL query to return data in selected table
$sql_query = "SELECT * FROM menu";
$row_count = mysql_query($sql_query);
// create table
echo ("<table width=\"100%\" border=\"0\" align=\"center\">");
echo ("<tr> <td bgcolor=\"#D0D8CF\">Menú Dinámico</td> </tr>");
// while records exists to fetch from table, repeat this action
while ($line = mysql_fetch_row($row_count)) {
echo ("<tr>");
echo ("<td>");
// construct a hyperlink from the 2 data elements of record in table
echo ("<a href=$line[1]>$line[0]</a>");
echo ("</td>");
echo ("</tr>");
}
// end table
echo ("</table>");
// close result set and connection
mysql_free_result($row_count);
mysql_close();
?>
Chao...