Well. You have your table on the next line. HTML tags can't be in PHP like that without being inside a print, echo or a heredoc.
If you are done with your PHP after the if statement line then close the php with ?> and remove the print, quotes and semicolon. Do your html as normal.
PHP Code:
<?php include "globals.php"; $tresder=(int) rand(100,999); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } ?> <b>You begin exploring the area you're in, you see a bit that interests you.</b><br/> <table width=75%><tr height=100><td valign=top>
Of course, if you have more php on done the page, you have to open with <?php
Last edited by joder : 04-15-2008 at 10:05 PM.
|