Question
Put and get id
ndex.php gives a variable. By example index.php?id=5
Then flash has to use this variable and has to use it agina.
I put the following in index.php
By this id will be available in flash, right?
Following should flash call flash.php and use the id, I tried this on
this way:
Then I get the following error:
There is no property with the name id.
When I put the following there is no problem:
How can i get it working? That id=9 should be variable.
Then flash has to use this variable and has to use it agina.
I put the following in index.php
quote:
<embed src="flash.swf?id=<? echo $_GET['id']; ?>"
By this id will be available in flash, right?
Following should flash call flash.php and use the id, I tried this on
this way:
quote:
loadVariablesNum("flash.php?id=".id, 0, "GET");
Then I get the following error:
There is no property with the name id.
When I put the following there is no problem:
quote:
loadVariablesNum("flash.php?id=9", 0, "GET");
How can i get it working? That id=9 should be variable.