Jump to content

PHP Curl & Session ID's


wpt394

Recommended Posts

Hello all.  I am having trouble passing data using curl.  The goal is to have a page use curl to go out to several other pages, each of which write data to the same location (i.e. a temporary file, or session, etc).  This file will then be read by a different "results" page. 

 

I tried passing the same php session id through the Url in the curl function, but the script hangs (I don't think you can have simultaneous connections to the same php session). 

 

(Please note:  My solution is not to retrieve the output using curl and then perform a preg_match....I want to actually write the data in the curl urls to some other temporary location that can then be accessed)

 

Here is the failing script I've been working with...

 

test.php

<?php
session_start();

$s = session_id();
$url = 'http://www.vegashotelhunt.com/test2.php?PHPSESSID='.$s;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);	
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$output = curl_exec($ch);
curl_close($ch);


$finalvariable = $_SESSION['sidtest'];
echo $finalvariable;
?>

 

 

test2.php

<?php
session_start();
$test = 'If you can read this on test.php, success!!';
$_SESSION['sidtest']=$test;
?>

 

If the script worked as I had hoped, running test.php would output $finalvariable as 'If you can read this on test.php, success'.  Unfortunately, no luck.

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.