PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
$url = "<a href=/"add_customer_taxproc.htm/">Click here to add another record for processors
and taxidermists</a>";
echo "Thanks $submitted_by, a record has been added for $company<BR>";
echo stripslashes($url);?>
?>
Switch your slashes to backslashes, backslashing takes the meaning away from the double quote, so its just a double quote, you can do it to other characters too, such as ' and $.
<?php
$url = "<a href="add_customer_taxproc.htm">Click here to add another record for processors
and taxidermists</a>";
echo "Thanks $submitted_by, a record has been added for $company<BR>";
echo stripslashes($url);
?>