This seems like a very trivial question, but I'm new to php, so please bear with me.
This is the test php script I wrote:
<?php
$str = $_POST['str'];
echo('string entered: '.$str);
I post a request by typing this into the url:
myurl.com/test.php?str=Hello
Now, the response I'm getting is:
string entered:
What am I doing wrong here?
Thanks!