| 
 Posted by William Stokes on 03/01/05 19:36 
Hello, 
 
I need to collect persons birth date from web form. The form is this kind: 
<td>Birthday</td> 
<td>date 
<input type="text" name="day" size="5" maxlength="2"> 
month 
<input type="text" name="month" size="5" maxlength="2"> 
year 
<input type="text" name="year" size="10" maxlength="4"> 
</td> 
 
 Then I need to combine these in to a one $variable. Something like this... 
 
$birthday = $day . $month . $year; 
 
How can I add the . (dots) to the date so it would look like for example  
this: 
 
28.05.1974 
 
 
 
Thanks 
 
-Will
 
  
Navigation:
[Reply to this message] 
 |