Hey i have the following issues / thinking problem
<?php
$fname=$_GET['buyer_first_name'];
$lname=$_GET['buyer_last_name'];
$email=$_GET['buyer_email'];
$orderid=$_GET['order_id']
?>
This parameters will coming in by GET and after they get in / i would love an automatic redirect to the following URL with the above parameters in it
www.mydomain.com/query.php?k=test&action=add&r=$orderid&n=$email
How can i do that? My main problem is how i can set the different parameters in the url..