Re: [PHP] 3 entries going into 1 field

2003-06-01 Thread Cal Evans
have 3 select boxes bdMonth, bdDay, bdYear. Then when processing the $_POST, simply contact them in the format you want. $bdString = $_POST['bsMonth'].'/'.$_POST['bsDay'].'/'.$_POST['bsYear']; HTH, =C= * Cal Evans * http://www.christianperformer.com * Stay plugged into your audience * The measur

RE: [PHP] 3 entries going into 1 field

2003-06-01 Thread Randum Ian
$EnteredDate = $date . "/" . $month . "/" . $year; This would output DD/MM/ if $date = DD, $month = MM and $year = . -Original Message- From: Vicky [mailto:[EMAIL PROTECTED] Sent: 31 May 2003 15:06 To: PHP List Subject: [PHP] 3 entries going into 1 field Hi, I have a registrati