#1. I want to get all of a colum for all rows in my table in mysql and display the results.
$Query = "SELECT user_name from $TableName";
$Result = mysql_db_query($DBName, $Query, $Link);
while ($colum = mysql_fetch_field ($Result)) {
echo ("http://www.ridingamerica.com/dbl/members.php?user_name=$colum[user_name]");
}
Im not sure how to get that to work properly. Theres probably an even better way to display this info?
#2. After the names are displayed. I want to have a link on each name which links to a page that displays all the information assosiated with that one name they clicked. Is the way I set it up, would that work by getting the infor from the url?
#3. How would I get the info for the single name based on the url from the table and display it all?
Sorry if this is a lot. Thank you very much in advance for you help.