That’s very helpful. Thanks. I’m just learning PHP. 😉
try this:
"(SELECT firstname, lastname, email from tablename WHERE id = '{$_GET['id']}'";
or
$userid = $_GET['id'];
"(SELECT firstname, lastname, email from tablename WHERE id = '{$userid}'";
hope that helps.
rj