Jump to content

Is there a way to submit Variables to another page (without a form)?


corrupshun

Recommended Posts

process.php:

<?php
$email = $_POST['email'];
header('Location: http://www.example.com');
?>

I would want process.php to take the $email variable and pass it to another page as a POST.

Is this possible in conjunction with header()?

Or is there another way I could do it?

 

$_GET

<?php
$email = $_POST['email'];
header('Location:http://www.example.com/?email='.urlencode($email));
exit();
?>

<?php
// http://www.example.com/index.php
$email = urldecode($_GET['email']);
?>

Neil stated the easiest/simplest method, using cURL you can actually emulate POSTing of form elements.

 

For info on CURL:

http://uk2.php.net/manual/en/function.curl-init.php

 

If you read through tyhe comments you will get tons of examples, and info if its not working like you want.

Also, for POST, you need to use the "CURLOPT_POST" constant.

 

I would reccommend using google for: "cURL PHP Tutorial".

 

-CB-

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.