Look at the following PHP:
<?php
var_dump($_POST);
?>
I am running this program using the following URL:
http://192.168.2.1:8888/a-s/bootstrap/php/test.php?lookup_word=parrot
And the result I am getting is this:
array(0) { }
What sorcery is this? Why is it returning an empty array while I am feeding it at least one key-value pair?
?lookup_word=parrot, I am guessing you want$_GETinstead of$_POST$_GETand$_POST. You're mixing up these