I'm trying to echo certain details of a specific user defined in the url (like this: search_result.php?lastname=Doe&date_of_birth=1964-04-12)
$lname = mysqli_real_escape_string($_GET['lastname']);
$dob = mysqli_real_escape_string($_GET['date_of_birth']);
$result=...