Hi,
try something like:
if(isset($GET['id']))
{
$id = $GET['id'];
}
(You need to do this in order to acces the $id. (I am not sure wether you need the '' in $_GET[] though: I am not home right now.. Don't have the codes here..
Then, in the query:
select * from customer where id='$id';
The same for all the other variables you might want to grab from the URL.
Good luck.
J.