Snafu: insert into funktion

Beitrag lesen

Hallo!
Probiers mal mit

  
mysql_query("INSERT INTO `tabelle` (`id`,`grund`,`datum`)  
              VALUES ( '$id', '$grund', '$date' )");  
// bzw ichs machs immer so, is Geschmackssache  
mysql_query("INSERT INTO `tabelle` (`id`,`grund`,`datum`)  
              VALUES ( '".$id."', '".$grund."', '".$date."' )");  

--
LG,
Snafu