Thanks for your reply. I have been using dropdown boxes for the Month, Date and Year. I then have another small code to turn it into the $Party_Date variable. I have tried:
$Party_Date= "$Year $Month $Date";
$Party_Date= "$Year$Month$Date";
$Party_Date= "$Year-$Month-$Date";
and I have hidden code so I can pass it on to the next page that produces:
<input TYPE=HIDDEN NAME="mysql_date" VALUE="2003-12-10"> -- (wrong date)
from:
$mysql_date = date('Y-m-d',strtotime($_GET['Party_Date']));
Once I see the hidden code produce the date entered by the user, I'll have won.
<input TYPE=HIDDEN NAME="mysql_date" VALUE="2004-02-24"> -- (correct date)
Thanks...