Forums

flash data into form

raivis 25 Jul, 2012
Hello!

What would be the best way to load data from flash into form?
I have flash that generates images and I would like to pass these images to form, so that if the images in flash are generated then form is opened and images are transferred into the form.

Brgds,
Raivis
GreyHead 25 Jul, 2012
Hi Raivis,

Sorry, I haven't a clue. If the images are saved somewhere then presumably you can load them like any other image file.

Bob
raivis 25 Jul, 2012
hmm... lets put this way:

I have php file that contains variables:
$t1 =  $_POST['t1'];
$t2 =  $_POST['t2'];

and I need to pass these variables into the respective form fields:
<input id="field_1" type="hidden" name="field_1" />
<input id="field_2" type="hidden" name="field_2" />


form is located in different page than php file with variables. it's url is "form.php"

I guess I need to create php post command in my php file that redirects to url "form.php" and loads $t1 and $t2 into respective form fields "field_1" and "field_2"?

Trying around but can not find right solution..Any ideas appreciated😉
Brgds,
Raivis
This topic is locked and no more replies can be posted.