which i believe means the url was formatted poorly anyone know what im doing wrong
Code:
string x="http://www.mysite.com/";
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, x);
Thanks
|
Go4Expert Member
|
|
| 13Sep2008,11:12 | #1 |
|
I am eventually going to call url dynamically from mysql but below is pretty close what i'm trying to do before i plug mysql into my program. The error that gets returned is error code 3
which i believe means the url was formatted poorly anyone know what im doing wrong Code:
string x="http://www.mysite.com/";
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, x);
Thanks |
|
Mentor
|
![]() |
| 14Sep2008,15:20 | #2 |
|
Not RTFM is what you're doing wrong.
CURLOPT_URL The actual URL to deal with. The parameter should be a char * to a zero terminated string. A string is NOT a char * to a zero terminated string. However, x.c_str() is, so that would be the solution. |
|
Go4Expert Member
|
|
| 15Sep2008,06:37 | #3 |
|
sorry i did read the manual but im kind of new still i took a c++ course in high school a while back im not use to .c_str() type stuff all the work we did dealt with numbers.
Thank you very much for the help. |