How Do I Automatically Escape Special Characters?
Hi, I have tried searching for an answer to this and thought I would post this question before giving up. Is there any way to automatically insert the escape characters into an HTML string for PHP processing?
In other words if I have the following line:
<div id="myid" clas="myclass"></div>
Is there any way to automate turning it into the following:
<div id=\"myid\" clas=\"myclass\"></div>
This is just so tedious and yet basic and I'm assuming/hoping Dreamweaver has some way of making this easy for us...
Thanks
