Click to See Complete Forum and Search --> : POSTing data and getting back page


Andrew275
March 11th, 2003, 03:25 PM
Well, I posted this in the C# forum and was told to repost it here, so here goes...


Ok, let's say you have a PHP script:

<?php
echo 'Hello, '.$_POST['name'].'! '.$_POST['message'];
?>

So you want to be able to POST those two variables to the page, and then read the page back into the C# program. How do you do that?