hmm, I tried it like you suggested, still no date value sent to the database.
Heres the code I'm using now
<?php
$cur_date = date("F dS Y"

;
function user_logout() {
setcookie('user_name','',(time()+2592000),'/','',0);
setcookie('id_hash','',(time()+2592000),'/','',0);
}
include($DOCUMENT_ROOT.'/include/database.php3');
include($DOCUMENT_ROOT.'/include/user.php3');
if (user_isloggedin()) {
user_logout();
$user_name='';
}
if ($submit) {
user_register($user_name,$password1,$password2,$email,$real_name);
}
if ($feedback) {
echo '<FONT COLOR="RED"><H2>'.$feedback.'</H2></FONT>';
}
echo '<H3>Register With BAA Private Community</H3>
<P>
Carefully fill in this info and a confirmation email will be sent to you.
<P>
Please write down your log in information so that you do not have trouble accessing the Private Community at a later date <P>
<FORM ACTION="'. $PHP_SELF .'" METHOD="POST">
<B>Real Name:</B><BR>
<INPUT TYPE="TEXT" NAME="real_name" VALUE="'. $real_name .'" SIZE="20" MAXLENGTH="35">
<P>
<B>User Name:</B><BR>
<INPUT TYPE="TEXT" NAME="user_name" VALUE="'. $user_name .'" SIZE="10" MAXLENGTH="15">
<P>
<B>Password:</B><BR>
<INPUT TYPE="password" NAME="password1" VALUE="" SIZE="10" MAXLENGTH="15">
<P>
<B>Password (again):</B><BR>
<INPUT TYPE="password" NAME="password2" VALUE="" SIZE="10" MAXLENGTH="15">
<P>
<B>Email (Required - Must be accurate to confirm):</B><BR>
<INPUT TYPE="TEXT" NAME="email" VALUE="'. $email .'" SIZE="20" MAXLENGTH="35">
<P>
<Input type=hidden name=Joined
value="'.$cur_date.'">
<P>
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Send My Confirmation">
</FORM>';
?>
I've also tried it like you said, still didnt work
<Input type=hidden name=Joined
value="<?php echo $cur_date?>">