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?

 

Link to comment
Share on other sites

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-

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.