Often when writing PHP I\'ll have it output some HTML like this -
echo \"\".$link_text.\"\";
You should just use single-quotes instead:
echo '' . $link_text . '';