Basically, I have first/last name printing for the rows. The user will see first/last name but when they select first and last name I need it to open URL with username instead of first/last name.
Example:
PHP Code:
echo "<li><a href='members.php?view=$row[user]'>$row[firstlastname]</a>";
firstname lastname when selected opens URL by username.
The HREF is where I am stuck because I need it to call username. but when row prints it must be first/last name...