Ciao, arrivo subito al punto:
Se elaborando i dati di un form ho 3 date diverse, posso inserire tutti i dati ma con le tre date diverse, come?
codice:
<form action="" method="post"> 
<table width="500">  
 <tr>    
 <th width="100">input_1</th>    
 <td><input name="input_1" type="text" size="35" /></td>   
</tr>   
<tr>   
<th>input_2</th>     
<td><input name="input_2" type="text" size="35" /></td>  
 </tr>   
<tr>    
 <th>input_3</th>     
<td><input name="input_3" type="text" size="35" /></td>  
</tr>   
<tr>     
<th>data_1</th>     
<td><input name="data_1"  type="text" size="35" /></td>   
</tr>     
 <th>data_2</th>    
<td><input name="data_2"  type="text" size="35" /></td>   
</tr>      
<th>data_3</th>     
<td><input name="data_3"  type="text" size="35" /></td>   
</tr>    
<th></th>     
<td><input name="invia"  i type="submit" value="invia" /></td>   
</tr>     
</table> 	
</form>
Spiegando meglio vorrei inserire input _1/input _2/input _3 in un database mysql la prima volta con data_1 un ulteriore volta con data_2 ed un ulteriore volta con data_3.