# Php email tutorial

**URL:** https://forum.kirupa.com/t/php-email-tutorial/41175
**Category:** Uncategorized
**Created:** [January 26, 2004, 11:59am UTC](https://forum.kirupa.com/t/php-email-tutorial/41175 "2004-01-26T11:59:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![G111](https://avatars.discourse-cdn.com/v4/letter/g/7ea924/32.png) [@G111](https://forum.kirupa.com/u/G111)
#### Post date: [January 26, 2004, 11:59am UTC](https://forum.kirupa.com/t/php-email-tutorial/41175/1 "2004-01-26T11:59:28Z")

</div>

I’m having a few problems with the php tutorial. I’ve got all the actions in my main timeline and calling them using instances. I have a mc called formset with an instance of formset in which is another mc called form with an instance of form which on the mc has the following code -

onClipEvent(data){  
// show welcome screen  
\_root.formset.nextFrame();  
}

I have a submit and back buttons with the following syntax -

formset.submit.submitbutton.onRelease = function(){  
this.formset.form.loadVariables(“email.php”, “POST”);  
}  
formset.back.backbutton.onRelease = function(){  
this.formset.prevFrame();  
}

I’ve a feeling I’m calling the timelines wrong with the root handlers etc. Only being doing flash for about 6 months and I can’t really figure out exactly what wrong. Can anyone shine a little light on this problem please.
