POSTing from HTTP to HTTPS - help
Posted: Thu Nov 13, 2003 11:41 am
Hi,
I have the following code in page1
http://www.A.com/page1.php
obviously I am expecting the variable pwdSID to be passed to the following page on the HTTPS server......
Page2 on the HTTPS does this.....
to display the data passed but there is no data - is this a problem with posting from HTTP to HTTPS?
I have also noted that all my $_SESSION varibales set in the HTTP pages are not able to be accessed.
Can anyone shed any light
TIA
Sean
I have the following code in page1
http://www.A.com/page1.php
Code: Select all
<form action="https://vault2.X.com/X/pers_p1.php", method="post">
<a href="https://vault2.X.com/X/pers_p1.php">
<img src="../images/CTA_Go_to_Checkout.gif" ></a>
<input value="<?php echo $_COOKIEї'cookieval']; ?>" type="hidden" id="pwdSID" name="pwdSID">
</form>Page2 on the HTTPS does this.....
Code: Select all
foreach($HTTP_POST_VARS as $varname => $value)
echo "p ".$varname."->".$value."<br>";I have also noted that all my $_SESSION varibales set in the HTTP pages are not able to be accessed.
Can anyone shed any light
TIA
Sean