Re: set cookie
Marcos Santos Junior <[email protected]>
| Newsgroups | gmane.comp.web.curl.php |
|---|---|
| Message-ID | <[email protected]> |
Please refer to manual: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTCOOKIE 2010/1/20 Mindaugas <[email protected]> > I need to setup cookie before sending further requests, and my code looks > like: > > > > > > $cookie="cookie.txt"; > > > > $ch=curl_init(); > > curl_setopt($ch, CURLOPT_URL, $url]); > > curl_setopt($ch, CURLOPT_USERAGENT, $agent); > > curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie); > > curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie); > > curl_setopt($ch, CURLOPT_COOKIE, "some_text"); > > curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); > > curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); > > $post=curl_exec($ch); > > curl_close($ch); > > > > > > When I run this code, file “cookie.txt” remains empty. Isn’t curl supposed > to write “some_text” to cookie.txt file when code is launched? Or is my code > wrong? > > _______________________________________________ > http://cool.haxx.se/cgi-bin/mailman/listinfo/curl-and-php > > _______________________________________________ http://cool.haxx.se/cgi-bin/mailman/listinfo/curl-and-php