WelcomeThe PHPEval Plugin is a Wordpress plugin which allows users to write php code inside of their pages. Embedded php code will be executed when the post is shown. In doing so, the plugin offers the possibility to utilize dynamic content inside of posts. In contrast to other plugins with the same aim, this on is focus on security. The main problem with other plugins is that when you disable the plugin sensitive php code is shown to your users. Example
<?php
echo "This is my password";
?>
When using PHPEval you dont expose your code when disabling the plugin. The only thing shown to the user is the {phpeval=scriptblock} not the code.
|