Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
int main(int argc, char *argv[]) {
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(!curl){
cerr << "Error bei Curl Initialisierung!" << endl;
exit(-1);
}
// Die URL von der Seite
curl_easy_setopt(curl, CURLOPT_URL, "https://www.blub.de/skript");
// Die POST Daten
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "j_blub=test&j_bla=hallo");
res = curl_easy_perform(curl);
if(res != CURLE_OK){
cout << "Failed to get: " << endl;
}
curl_easy_cleanup(curl);
return EXIT_SUCCESS;
}
char String[50];
String=curl_easy_cleanup(curl);