Search Results

1
vote
2answers
197 views

Can I make more then one request on a curl connection?

In PHP (v5), is there a way to make multiple requests on an open curl connection? I'm noticing that my big bottleneck is the timeout/teardown of the connection its self (i'm making lots of …
0
votes
1answer
125 views

what is the most efficient way to fully resolve a url (using php and curl)

I'm looking for the most effecient way to resolve a given url to its final end point, following all 30x redirects and location headers. Basically, I have a bunch of URLs like …
0
votes
2answers
400 views

what is the correct way to send post data with cURL in PHP?

when using cURL in php to send data in a POST, you use set the cURL option CURLOPT_POSTFIELDS to the data here's some example data array('foo'=>'bar','ninja'=>'pirate') …
2
votes
4answers
542 views

When POSTing an associative array with cURL, do I need to urlencode the contents first?

When I assign an array of data to be POSTed as a cURL option (via CURLOPT_POSTFIELDS), do I need to urlencode that data first or will that be taken care of? …
3
votes
3answers
143 views

Any way to keep curl’s cookies in memory and not on disk

I'm doing some cURL work in php 5.3.0. I'm wondering if there is any way to tell the curl handle/object to keep the cookies in memory (assuming I'm reusing the same handle for multiple requ …
0
votes

curl sending GET instead of POST

try throwing in a print_r(curl_getinfo($loginpage)) at the end, see what the header data it sent back as. also, if your trying to fake that your logging in from their site, you …