Although the OP didn't sate which DBMS is being used, an even easier solution when using MySQL might be a TIMESTAMP column, defined like so:
reg_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP
That way you wouldn't even need to include the 'reg_date' field in your INSERT queries when adding new users to the database - the DBMS takes care of populating that column automatically (similar to an AUTO_INCREMENT column).