How to append text in php

Posted by user225269 on Stack Overflow See other posts from Stack Overflow or by user225269
Published on 2010-04-19T01:38:26Z Indexed on 2010/04/19 1:43 UTC
Read the original article Hit count: 343

Filed under:
|
|

I have this form for inputting the birthday in html. But I only have a single column for storing it in wampserver(Column Birthday).

<select title="- Select Month -" name="mm" id="mm" class="" > 
                              <option value="" SELECTED >Month</option> 
                              <option value="1" >Jan</option> 
                              <option value="2"  >Feb</option> 
                              <option value="3"  >Mar</option> 
                              <option value="4"  >Apr</option> 
                              <option value="5"  >May</option> 
                              <option value="6"  >Jun</option> 
                              <option value="7"  >Jul</option> 
                              <option value="8"  >Aug</option> 
                              <option value="9"  >Sep</option> 
                              <option value="10"  >Oct</option> 
                              <option value="11"  >Nov</option> 
                              <option value="12"  >Dec</option> 
                              </select> 
                      <input title="Day" type="text" onkeypress="return isNumberKey(event)" name="dd" value="" size="1" maxlength="2" id='numbers'/ > 
                      <input title="Year" type="text" onkeypress="return isNumberKey(event)" name="yyyy"  value="" size="1"  maxlength="4" id='numbers'/> </td>

Do you have any idea on how I can place those 3 values in the same column?Please help

© Stack Overflow or respective owner

Related posts about php

Related posts about html