Image

Imageinvertedsky wrote in Imagephp

Does anyone know of a free on-line tool or free windows utility that will convert HTML fragments into properly escaped PHP echo or string statements? Ideally, I'd like to be able to paste from the clipboard as the input.

For example convert:
<td width="86" align="right">

to:
echo "<td width=\"86\" align=\"right\">";

or:
$output = "<td width=\"86\" align=\"right\">";

Thanks.