I am trying to send a variable from a flash input text box to a php script. The input box has a var name of search. The PHP script attempts to read in this variable by doing the following
$text=$_POST['search'];
the flash code is as follows:
This is actionscript 2.0
When I use the search box and type something like "Test" the PHP script gives me an output like
test
.
including that period...which I find very strange.
$text=$_POST['search'];
the flash code is as follows:
Code:
on (release) {
getURL("jhandleSearch.php","mainFrame","POST");
}
When I use the search box and type something like "Test" the PHP script gives me an output like
test
.
including that period...which I find very strange.