hi,
i have big problem in posting data to php (because im newbie in c# )
ok
i want send this request to server
string Parameters = "hwid=" + _serialNo + "&country=" + PcIp + "&nat=1&pcname=" + PcName + "&winver=" + str;
and after sending data to server get activation key ,
in my server side i used simple php + mysql get Parameters , check it , then show me code this code check user
if (mysql_query($sql)) {echo "done1";
} else {echo "err211";}
if c# program get done1 , get this code
$sql = "SELECT `key` FROM `clients` WHERE `hwid` = '".dRead("hwid")."';";
$res = mysql_query($sql);
echo mysql_result($res, 0);
and if c# program get key , start working
ok where is my problem ?
i cant write program for sending data , i read many blog but none of them explain me who to POST data , and get response :(
so please some one teach me ,