Hi all,
In MySQL I have a field called "date_time" of type "timestamp" with a default value of "CURRENT_TIMESTAMP".
However, when using this query it does not insert the current timestamp:
$query = "INSERT INTO bid_history VALUES ('$id','$valid_user','$bid','$nextbid','')";
$result = mysql_query($query);
The last field is the time stamp. Any idea's what i'm doing wrong?