Metuzaleh Posted July 23, 2009 Posted July 23, 2009 Hey, my script connects to my localhost, but I have problem with sending Cookie data It's my autoit code:$objHTTP = objCreate( "Microsoft.XMLHTTP" ) $objHTTP.open ( "POST", "http://localhost/cookie.php", false ) $objHTTP.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" ); $objHTTP.SetRequestHeader( "Cookie", "test=Hey!" ); $objHTTP.send ( "test=Hey!" ) MsgBox(0, "Result", $objHTTP.responseText )Its my PHP code:<?php echo 'Post data: ' . $_POST['test'] . "\r\n"; echo 'Cookie data: ' . $_COOKIE['test']; ?>That's result:Why I don't get my Cookie data in my PHP script? :/
BrettF Posted July 23, 2009 Posted July 23, 2009 http://www.cookiecentral.com/faq/#3.2 Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
trancexx Posted July 23, 2009 Posted July 23, 2009 Hey, my script connects to my localhost, but I have problem with sending Cookie data It's my autoit code: $objHTTP = objCreate( "Microsoft.XMLHTTP" ) $objHTTP.open ( "POST", "http://localhost/cookie.php", false ) $objHTTP.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" ); $objHTTP.SetRequestHeader( "Cookie", "test=Hey!" ); $objHTTP.send ( "test=Hey!" ) MsgBox(0, "Result", $objHTTP.responseText ) Its my PHP code: <?php echo 'Post data: ' . $_POST['test'] . "\r\n"; echo 'Cookie data: ' . $_COOKIE['test']; ?> That's result: Why I don't get my Cookie data in my PHP script? :/ Try this: $objHTTP = objCreate( "MSXML2.ServerXMLHTTP" ) $objHTTP.open ( "POST", "http://localhost/cookie.php", false ) $objHTTP.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" ); $objHTTP.SetRequestHeader( "Cookie", "test=Hey!" ); $objHTTP.send ( "test=Hey!" ) MsgBox(0, "Result", $objHTTP.responseText ) So, what did I change? ♡♡♡ . eMyvnE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now