Ok so what I am doing is ‘looking’ through a database where a user’s id is equal to the id in the url. Then I will pull all the info on that person with that ID. If that made any sense, can somebody help me? Thank you soooo much!
$prof = $_GET['profile'];
$id = SELECT id FROM *table-name* WHERE id = '$prof'
$item1 = SELECT item1 FROM *table-name* WHERE id = '$prof'
$item2 = SELECT item2 FROM *table-name* WHERE id = '$prof'
$item3 = SELECT item3 FROM *table-name* WHERE id = '$prof'
VERY basic code there to get you started. You’d do well to study up on MySql a bit more. Everyone starts somewhere. No harm in asking when you are just learning.