Trying to grab data from a page after post via curl?

I don't have much experience with cURL, and I didn't look into it, but at first glance it appears that this: curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false) needs to be this: curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true) Could be wrong though.

I don't have much experience with cURL, and I didn't look into it, but at first glance it appears that this: curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false); needs to be this: curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); Could be wrong though.

I already tried that. It is not working – Ben Apr 25 '10 at 19:35.

If you're getting data from the first request, try closing afterwards (for each request). $content=curl_exec($ch); curl_close($ch); echo $content; and $content_stage2=curl_exec($ch); curl_close($ch); echo $content_stage2.

I did it and getting the same results, maybe its not matter. – Ben Apr 25 '10 at 20:04.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions