Quote:
Originally Posted by dmm2020
Question I have then, does PHP version parse embedded HTML or do I have to echo the whole thing?
|
It parses embed HTML. Eg. this works:
Code:
// This is a TEST PHP Code to demonstrate webtemplates hack PHP parsing feature:
echo "Time now is $today<br><br>";
echo "You registered <b>this</b> board at ".date('M-d-Y h:i:s',$vbulletin->userinfo[joindate]);
?>
<p><i>hello</i></p>
<?php
exit;