
The PHP module has two different options:
Title
This is the title that will show above the PHP module on the page.
PHP Code
This is where you would input your valid PHP for the module. Please make sure you use valid PHP or you could possibly break your page.
Some examples of valid PHP to use in this module:
echo “Hello World!”;
Hello World
echo "Hello ". vB5_User::get('username') .", how are you doing today?";
Hello <username>, how are you doing today?