lingo5 Posted November 24, 2011 Share Posted November 24, 2011 Hi, I'm using a simple PHP encoder to encrypt some code. It works fine except in this case: <tr <?php echo " style=\"background-color:$mocolor\" onMouseOver=\"this.style.backgroundColor='$mocolor3'\" onMouseOut=\"this.style.backgroundColor='$mocolor'\""; ?>> it gets messed up with the "\". Can these be replaced by someting else?. Thanks Link to comment https://forums.phpfreaks.com/topic/251735-please-help-with-encoder-problem/ Share on other sites More sharing options...
sunfighter Posted November 24, 2011 Share Posted November 24, 2011 <tr <?php echo "style=\"background-color:$mocolor;\" onmouseover=\"this.style.backgroundColor='$mocolor3';\" onmouseout=\"this.style.backgroundColor='$mocolor';\""; ?>> Link to comment https://forums.phpfreaks.com/topic/251735-please-help-with-encoder-problem/#findComment-1290985 Share on other sites More sharing options...
lingo5 Posted November 24, 2011 Author Share Posted November 24, 2011 Thanks a lot, that worked Link to comment https://forums.phpfreaks.com/topic/251735-please-help-with-encoder-problem/#findComment-1290992 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.