Hello everyone, I need to do an assignement for school. But i'm kinda stuck on a bit, so i'm here to ask some help :D
Okay, my question:
In my C# application I need to make a webrequest to a php page. This worked, but i want the php page to send a word via the url, only the word is unknown to me. So at this bit, I have this bit of code:
request = (HttpWebRequest)WebRequest.Create("http://www.mywebsite.nl/test.php" + req="?input=);
What I want it to do is, that the string called req takes the value of input, but this input word is unknown to me. This might sound a bit confusing, so if anything isn't clear enough ask me for more information. Thanks in advance for all your help.
Davey.