Gossamer Forum
Quote Reply
MySQL
I have a MySQL database containing my users information. What Im trying to do is take every name and output it to the browser (all names in the databse at once). Im assuming I can do something like the following:

my($query) = "SELECT * FROM table where username not null";

But still I cant get it to output any data from the database. Anyone have any ideas?

Quote Reply
Re: MySQL In reply to
Use Php 4.0!
Connect to the database and select the table, run a while loop to grab all records and echo them into a table.
Just starting in Php myself, but it's real easy.
Greg