I just created a mysql with php scripts to manage it. I had quite a time finding security for the output. Finally got htmlprotector to do it for not only php script but the php generated output with the output data from mysql database. I got the php script from the internet but had to add starting tags for the head, title, body and ending tags for the same tags. Then and only then did the htmlprotector deal with the output security generated from the php script. Also had to use php scripting in the html code in the php program instead of html code in the php. For instance, html code with
<? echo $field; ?>
rather than
echo "html code";
in php script. Confusing isn't it. Then I used the php option instead of html standard option. Anyway, it worked. Also had to block off any php code with the <? ?> if it was within the html section of my php script.