Hi,
My host has recently made the upgrade to PHP 5.0, and the forms I had used to update and edit the text on my site, dont appear to work.
The text is just big chunks that include line breaks and numerous different text characters. When I try to update rows that are already in the table it doesnt work.
After sending it through a form I use the following code on the next page.
$query = "UPDATE `progs` SET `description` = '$description' WHERE `prog_id` = '$prog_id' LIMIT 1";
$result = mysql_query($query) or die ("Unable to update description");
echo("description Updated!");
Any help will be most appreciated.