I want to speed up submitting with an auto submitter tool.
So if I'm using curl in php I first load the page and save cookies in a file.
Then I submit the page with the given cookies.
So lets say I want to submit immediately without loading the page first then I need to generate the cookie file myself because I'm reading cookies from a web browser.
Will I get any problems just submitting without loading if I generate a cookie file?curl gave me this example in the cookie file:
# Netscape HTTP Cookie File
# http://curlm.haxx.se/rfc/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.
www.mydomain.info FALSE / FALSE 1216591646 user Alex+Porter
I don't understand the format. I tried to understand the spec but couldn't find any match for this example.
How do I figure this out?Where can I find information of the parameters?I appreciate any help you can offer on this.
Cheers!
Natt