Hi,
I want to pass a query string to a page that my script opens.
I used the explode to create my substring of full name. Now I want to pass it on.
How do I do this?
Here is my code:
$names = explode(" ", $full_name);
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($email_to, $email_subject, $email_message, $headers);
header("Location: $thankyou");