If you just need to limit the number of chars displayed, you can use strlen() to determine the number of chars, and substr() to limit the display.
for example
if(strlen($product_description)>100)
{
echo substr($product_description,100).'... <a href="[link]">read more...</a>';
}
else
{
echo $product_description;
}