Originally Posted by Taylor
Thanks

On the custom islands I have this code already

/* PHP CODE HERE */

/* BODY HERE */
$body = <<<EOF
EOF;

Where do i put the html code?
I can not understan as those instructions are not clear to me... plus i saw a message that putting wrong code here can mess the whole posrtal...

can i use UBB code too? Would it go in the same place?

Looking at Rick's example...

PHP Code

/* PHP CODE HERE */

/* BODY HERE */
$body = <<<EOF
<a href="https://www.ubbcentral.com">Home</a><br />
<a href="https://www.ubbcentral.com/features.php">Features</a><br />
<a href="https://www.ubbcentral.com/docs.php">Documentation</a><br />
<a href="https://www.ubbcentral.com/purchase.php">Pricing & Order</a><br />
<a href="http://www.infopop.com/members/members.php">Members Area</a>
EOF;
 

You will see that the html is after $body = <<<EOF and before EOF;

Place your html here and you will be fine as long as there is nothing bad within the code wink