Hi, i'm building a newsletter join section in my site, with an input text for e-mail, to send to my php file.

But i need the date when this person joined.

This is code so far:

btn.onPress = function(){
var form:MovieClip = this.createEmptyMovieClip("form", this.getNextHighestDepth());


form.email = email_txt.text;
form.date = date_text.text; ///////// this is not working of course //////////



form.loadVariables("http://www.k4ribbons.com/input.php","POST");
form.onData = function(success:Boolean) {
for (var a in this) {
trace([a, this[a]]);
gotoAndPlay("thanks"); }
}
}

Any ideas ???

Thanks