# loadVariablesNum - Collecting Variables

**URL:** https://forum.kirupa.com/t/loadvariablesnum-collecting-variables/39071
**Category:** flash
**Created:** [January 2, 2004, 9:51pm UTC](https://forum.kirupa.com/t/loadvariablesnum-collecting-variables/39071 "2004-01-02T21:51:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![waffe](https://avatars.discourse-cdn.com/v4/letter/w/c37758/32.png) [@waffe](https://forum.kirupa.com/u/waffe)
#### Post date: [January 2, 2004, 9:51pm UTC](https://forum.kirupa.com/t/loadvariablesnum-collecting-variables/39071/1 "2004-01-02T21:51:46Z")

</div>

I am using loadVariablesNum with php. I am running into problems in collecting all the flash variables and pushing them to php. It is a move clip thing - I have 3 input boxes in movieclip(a) with a submit button. I have 12 input boxes in a movieclip(b) that is inside movieclip(a). These are the variables that do not get passed to php. The variables in movieclip(a) are passed just fine.

Here is my submit button code:

on (release) {  
if ((vemail.indexOf("@") != -1) && (vemail.indexOf(".") != -1) && (length(vemail)\>5)) {

loadVariablesNum(“merchform.php”, 0, “POST”);

} else {  
vemail = “Please enter email”;

}  
}

I have tried using Var and pushing the variables into the correct movieclip(a) but nothing has worked thus far.

Any Ideas?  
:p:
