Jump to content

Creating session/cookie using file_get_contents


adiya

Recommended Posts

I have two domains - http://domaina.com, http://domainb.com

 

I'm calling domainb.com's url from domaina.com:

 

file_get_contents('http://domainb.com/a.php');

 

 

In http://domainb.com/a.php, I'm trying to creating a session or cookie for domainb.com

 

 

<?php
setcookie("key", "value", time()+3600);
 
session_start();
$_session["key1"] = "value1";
?>

 

 

But this code is not working.

 

Please help in solving this issue.

 

Thank you.

  • 3 weeks later...

Explain 'not working'. The cookie isn't being set at all, the value isn't being read from elsewhere, the value is not what you expected to see, what? And are you trying to set a cookie, or a session variable? It seems like you don't know, and there are differences between the two that can dictate which is the proper choice.

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.