Hello everybody!
This is my first message on this forum.
I have the following problem:
System:
Win nt 4.0 service pack 6
Apache
PHP
MySQL
Flash MX
The problem:
reading php generated variables from Flash
The php script looks like this:
PHP:--------------------------------------------------------------------------------
<?
$result = $HTTP_GET_VARS['input'] +1;
print "result=$result";
?>
--------------------------------------------------------------------------------
When I enter in the browser's address window the following address:
<
http://localhost/phpFile?input=100>
In the Browser window appears:
<result=101>
So the php works fine with Apache!
The next step would be to read the "result" variable into Flash, using the "loadVars()" method.
This part doesn't work.
What could be the problem?
Win NT permissions?
Apache settings?
PHP .ini settings?
I hope that somebody has the answer.