Re: Updating a timestamp with now()
hello you could simply try this..
add a new field/column to ur database row called AutoRowDate and its type as TIMESTAMP.
ALTER TABLE `MyGoodTablesNameHere`
ADD `AutoRowDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Security TimeStamp';
|