you need a function to grab a id of the profile such as:
$id=$_GET['id'];
then a WHERE clause in your SQL statement, something like:
SELECT * FROM members WHERE id = '$id'
Something along those lines
you need a function to grab a id of the profile such as:
$id=$_GET['id'];
then a WHERE clause in your SQL statement, something like:
SELECT * FROM members WHERE id = '$id'
Something along those lines
