Hi... I'm now pretty familiar to how PHP works with flash.

I know how to send variables from flash to PHP, how to write a variable from PHP to a txt file and then how to get variables from a text file to flash.

Yay! It all works good!!!

not quite.

I'm trying to make a highscore game. each level has its own one highscore as well as the name of the person on top.

anyway to get stuff from flash to PHP is simple I know all that.

fwrite($file, "score=".$score);

yeah uh, how do I make it write 2 things without them intefering?

is it like:

fwrite($file, "score=".$score);
fwrite($file, "name=".$name);

well thanks to anybody who will help.