Sep 8th, 2011, 10:00 AM
Hi Ted,
Interesting! Could you post the PHP you're entering?
It should be entered without the opening and closing tags: the entire block is simply eval()'d as PHP, so no tags are necessary.
I just tested it out and it appears to be working okay. If there's any syntax error in the code, nothing will appear. To confirm that it's working (the evaluation of the PHP code, at least), try creating a page with this content.
Assuming that that page output's "Hello world", then at least we know the code is being parsed.
Let me know how it goes!
- Ben
Interesting! Could you post the PHP you're entering?
It should be entered without the opening and closing tags: the entire block is simply eval()'d as PHP, so no tags are necessary.
I just tested it out and it appears to be working okay. If there's any syntax error in the code, nothing will appear. To confirm that it's working (the evaluation of the PHP code, at least), try creating a page with this content.
PHP Code:
echo "Hello world.";
Assuming that that page output's "Hello world", then at least we know the code is being parsed.
Let me know how it goes!
- Ben