Sorry, I must have got you a little bit confused (my native language is french)
I'll try to get a bit clearer :
My problem is the following :
I'm using a php file in order to parse information that is sent to a flash mp3 player (using loadnumvars() or something like that). I've only the flash movie in .swf and the php file that is used to send information to it.
Want i want to do is to dynamically get a music directory and use it in the flash movie.
For the moment, the php use the $gDirectory as the directory variable.
For the moment, i must specifiy in the file
$gDirectory = "sound/directory_name"
What i want is to allow a dynamic value to this variable... i've tried to use a session variable with the session_register() function
... (i.e. session_register($rep_name) where $rep_name is the name of the music repertory i want to be listed in the flash player.)
So, i thought i could then wrote $gDirectory = $rep_name in the php file... php functions work all the same, but informations doesn't seem to be sent anymore to the flash mp3 player (but it worked when i tried to put $gDirectory = "rep_name" in the php file...)
I don't know if i'm clear enough... just say to me if you want more informations.
Destercke Sebastien