Hallo an alle.
Was ist eigentlich schneller?
	
oder
	
Innuendo
							
						
					Was ist eigentlich schneller?
PHP Code:
	
	
# Geburtstag umwandeln
# Das Datum im Formularfeld hat das Format TT-MM-JJJJ
$strGebYear = substr($_POST['formGeb'], 6, 4);
$strGebMonth = substr($_POST['formGeb'], 3, 2);
$strGebDay = substr($_POST['formGeb'], 0, 2);
$strGebUser = $strGebYear."-".$strGebMonth."-".$strGebDay; 
PHP Code:
	
	
# Geburtstag umwandeln
# Das Datum im Formularfeld hat das Format TT-MM-JJJJ
$strGebUser = substr($_POST['formGeb'], 6, 4)."-".substr($_POST['formGeb'], 3, 2)."-".substr($_POST['formGeb'], 0, 2); 
          

							
						
 sein kann. oder?;  
							
						
Comment