C# -> Post -> PHP Page
-
Hallo,
Ich habe ein PHP Script welches auf folgende Eingaben horcht:
www.der-server.de/eingabe.php?bob="test"Wobei der String "test" mit dem des Programmes überschrieben werden soll.
Versuch:
public static string send (string url, string text)
{
try
{
WebClient wc = new WebClient();
NameValueCollection myNameValueCollection = new NameValueCollection();
myNameValueCollection.Add("bob",text);
byte[] responseArray = wc.UploadValues(url,"POST",myNameValueCollection);return "UploadSuccess";
}
catch
{
return "UploadError";
}
}Und der Funktionsaufruf
send("www.server-de/eingabe.php?bob=", "test");
Das funktioniert aber leider nicht.
Kann mir wer helfen?Danke
-
Will der Server denn die Variablen als POST oder GET haben?
Wieso hast du in der URL die du an send() übergibst noch "?bob=" drin? Und warum kein http:// davor?
-
comment4,
-
comment3,
-
comment5,
-
comment5,
-
comment1,
-
comment5,
-
comment1,
-
comment1,
-
comment4,
-
comment4,
-
comment2,
-
comment5,
-
comment1,