I'm trying to do the following with much unsuccess:
************************
#include <iostream>
#include <cstdlib>
using namespace std;
string user;
main()
{
cin >> user;
system("curl -d userid="+user+"&press=submit
}
***********************
I've tried every combo of variable type I can think but no luck. Where am I going wrong?
Thx,
FM
************************
#include <iostream>
#include <cstdlib>
using namespace std;
string user;
main()
{
cin >> user;
system("curl -d userid="+user+"&press=submit
}
***********************
I've tried every combo of variable type I can think but no luck. Where am I going wrong?
Thx,
FM