Hi
Ive been trying CURL library and I gotta say its great for communication betwen my servers.
I usually use the CURLOPT_POSTFIELDS as a simple string such as
$vars = "username=".$user."&password=".$pass;
So what im trying to do now is pass some parameters the same way Hidden Inputs do on a usual form
the problem comes when Im creating the string, if my hidden input use to have an old address with headers on it, and I wanna pass it throu the CURL vars, it wont work, I think its because the URLvar im trying to pass has the amperson symbol too 😕
How can I pass throu CURL a value like this one
http://mywebsite.com/page.php?userd=54&reading=94&schema=red&portal=1
??
thanks for your time =D !