Hi ,
i currently have a form that inserts values into a MySQL database. At the moment, if the user doesn't type in a value it puts the value "0" into the database. How do i make it so that it inserts no value at all....blank?
My database column is as follows:
year_released smallint(5) unsigned DEFAULT '0' NOT NULL,
i tried making it NULL and removing the default value "0" but with no success.
Any ideas?
micmac