PHP/MySQL Demo - Dump Database Contents

\n"; // ---- print the header line echo "\n"; echo "idNomPrénomemailOrdinateurBrowserVersionCommentaires"; echo ""; // ----- print the table fields $i = 0; while ($i < mysql_num_rows($result)) { echo ""; echo ""; echo mysql_result($result,$i,'id'); echo ""; echo ""; echo mysql_result($result,$i,'nom'); echo ""; echo ""; echo mysql_result($result,$i,'prenom'); echo ""; echo ""; echo mysql_result($result,$i,'email'); echo ""; echo ""; echo mysql_result($result,$i,'computer'); echo ""; echo ""; echo mysql_result($result,$i,'browser'); echo ""; echo ""; echo mysql_result($result,$i,'version'); echo ""; echo ""; echo mysql_result($result,$i,'comments'); echo ""; echo ""; $i++; } ?>
Vivian Synteta