Jump to content

Catch flash variable with Php


fabiez

Recommended Posts

I'm using this script in my movieclip and want to catch it in my php file

 

onClipEvent (enterFrame) {
_root.check = Math.round(_root.scale._x/3);
var my_lv:LoadVars = new LoadVars();
my_lv.test = Math.round(_root.scale._x/3);
my_lv.send("form.php",_self,"POST");
}

 

And I try to catch it with

<?php print $_REQUEST['test']; ?>

 

preciate any help

Link to comment
https://forums.phpfreaks.com/topic/246178-catch-flash-variable-with-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.