Php email form with checkboxes

Hey, I’ve looked over the other posts on this forum, and I am still having trouble with having checkboxes in my php email form. Could someone please help me write the code for it, I cant figure it out. I have one checkbox in the form right now. If I knew the code to send one variable from the checkbox to the php, I could probably figure out the rest. Thanks for any help!

Matt

this is the code on the send button:
[INDENT]on (release) {
form.loadVariables(“email.php”, “POST”);
}

[/INDENT]heres the code on the first frame of the form movie:
[INDENT]var chk_val=false;
_global.remember=“NO”;
chk1.setState(chk_val);
chk_handler=function()
{
chk_val=chk1.getValue();
if( chk_val == true )
_global.remember=“YES”;
else
_global.remember=“NO”;
}
// now u use _global.remember variable for sending it into ur php

function fun_Test()
{
trace(“ok”);
}
[/INDENT]I dont know how to send the variable to the php now.