Have a longtext field in my mysql db.. shouldn't it be possible to update that..? have one problem.. I use a textarea to type an article, inserting into it is no problem, but when I try to update it, I can't get it to work.. any ideas..???
$queryarticle = "Update News
set Article = '$pArticle'
where NewsID = $pNewsID";
$queryarticle = mysql_query($query);
$pArticle is the text in the textarea...
$queryarticle = "Update News
set Article = '$pArticle'
where NewsID = $pNewsID";
$queryarticle = mysql_query($query);
$pArticle is the text in the textarea...