I'm already slightly familiar with these. I've put them in to use a few times. The particular function I'm looking for (unless there is a better way to do it) is something that will actually create a .php page, because I need to allow my users to build up portfolio's.
Unless... (brain ticking now) the better way would be to have it so that the customer could click on the name, and then it would show all the info related to that person that was relevent... It's all peiceing together...
Right. here we go. I'm going to start it right now. In this thread, and if you guys could help with the next step after what I do that would be awesome. So, the first thing I'm going to need, is a drop down list of all the users. Users are known as webfriends. I've already connected to the database.
// Query All entries
$result = @mysql_query('SELECT * FROM webfriends');
if (!$result) {
exit('<p>Error performing query: ' .
mysql_error() . '</p>');
}
So the next question is, how can I populate a drop down list, from the field "username" ?