I'm adding content in one sql table... But when I try to add the var $description in a text, the information don't add.. The var is $description and mysql value is description text not null. I think that this is because my $description var is too long... Help please !!!
CREATE TABLE `articles` ( `id` int(11) NOT NULL auto_increment, `title` varchar(80) collate utf8_unicode_ci NOT NULL, `image` varchar(80) collate utf8_unicode_ci NOT NULL, `description` text collate utf8_unicode_ci NOT NULL, `date` varchar(80) collate utf8_unicode_ci NOT NULL, `file` varchar(80) collate utf8_unicode_ci NOT NULL, KEY `id` (`id`) );