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 Quote 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';\""; ?>> Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.