Debt Consolidation - Debt Consolidation - Wordpress Theme - Sciences in 2007 - Kamala Harris

PDA

View Full Version : Problem PHP and MYSQL


rdlrn19
Mar 9th 2009, 7:00 am
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 !!!

itvn
Mar 9th 2009, 7:15 am
please give me your SQL statement

rdlrn19
Mar 9th 2009, 7:42 am
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`)
);

itvn
Mar 9th 2009, 8:02 am
No, not that SQL statement. I need your INSERT INTO query

Techmonkey
Mar 9th 2009, 8:19 am
Yes show us the code where you are actually running the insert or update query