Here is the textarea code from within the form:
Description<br />
<textarea cols=\"45\" rows=\"8\" name=\"ProdDesc\"></textarea>
Here is the part of the code that processes the info. It takes some image addresses from a previous form, gets the image width and height and runs a function to scale the images down. Then, the code you see below generates IMG SRC code, then the ProdDesc field from above (which is text and measurements), are both saved to fields in the database.
$Image_Array=Image_Tool($Image1);
$Scale_Width=$Image_Array[0];
$Scale_Height=$Image_Array[1];
$Image_SRC1="<a href=\"images.php?File=$Image1\"><img src=\"$Image1\" width=\"$Scale_Width\" height=\"$Scale_Height\" border=\"0\"></a>";
$Adj_Image_SRC1=addslashes($Image_SRC1);
$New_Prod_Desc="$ProdDesc";
Then, it's added to the database (mysql)
$Adj_New_Prod_Desc=addslashes($New_Prod_Desc);
$NewProd2="UPDATE $Product_DB SET ProdDesc=\"$Adj_New_Prod_Desc\", ProdImage=\"$Adj_Image_SRC1\" WHERE ID=\"$NewProdID\"";
mysql_query($NewProd2) or die ("<p>Error performing query: $Product_DB " . mysql_error() . "</p>");