hi all...
this is my Table
CREATE TABLE `client` (
`client_id` tinyint(4) unsigned NOT NULL auto_increment,
`client_name` varchar(255) NOT NULL,
`client_email` varchar(255) NOT NULL,
`client_phone` int(20) unsigned NOT NULL,
`client_mobile` int(20) unsigned NOT NULL,
`client_country` varchar(255) NOT NULL,
`c_billing_address` text NOT NULL,
`modified_date` int(11) NOT NULL,
`edited_date` int(11) NOT NULL,
PRIMARY KEY (`client_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
`modified_date` int(11) NOT NULL,
`edited_date` int(11) NOT NULL, in that these two fields are to store the values whenever person changes or alter to this form.... so can you please tell how to make these fields to store the time of modified and altered tines in those fields? should i change the type(int(11))?
form contains input fields for only
`client_name` varchar(255) NOT NULL,
`client_email` varchar(255) NOT NULL,
`client_phone` int(20) unsigned NOT NULL,
`client_mobile` int(20) unsigned NOT NULL,
`client_country` varchar(255) NOT NULL,
`c_billing_address` text NOT NULL,
this one auto increment
`client_id` tinyint(4) unsigned NOT NULL auto_increment,
please give me the full code if i have to make any changes in the php file...