PHP expert |
|
Ik vind dat trouwens ook niet de slimste manier. Ik herhaal nogmaals, je hoeft de IP en Datum pas NA HET POSTEN in te voeren.
$sQuery = "INSERT INTO `tabel` (`ip`,`datum`) VALUES ('".$_SERVER['REMOTE_ADDR']."',NOW() )";
$sQuery = "INSERT INTO `tabel` (`ip`,`datum`) VALUES ('".$_SERVER['REMOTE_ADDR']."',NOW() )";
En NOW() moet je alleen gebruiken als je DATE{TIME}() hebt, en anders time() bij een INT veldtype. |