Jump to content

quotation mark issue


efficacious

Recommended Posts

I made a template class recently and the only problem I'm having with it is that when I pull the HTML through if I add double quotes anywhere it breaks the code. I understand why its breaking sorta but I can't figure out how to fix it.

<html>
<head>
</head>
<body>
    <p id='Element'>"Something in quotes"</p>
</body>
</html>

 


$string = $template->myMethod();//Returns the html in a string

eval("\$HTML = \"$string\";"); //The error happens during the evaluation here

echo($HTML);

 

 

The string breaks with double quotes during the eval method and I've tried replacing the " mark with \" by using str_replace but i haven't been able to get it to work. Thanks for your replies

 

 

Link to comment
https://forums.phpfreaks.com/topic/236591-quotation-mark-issue/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.