Quote:
Originally Posted by gsmph
hi
i tried to put this code below but i always get error..
Parse error: syntax error, unexpected T_LNUMBER in /home/xxx/public_html/forum/vbb/pages.php(113) : eval()'d code on line 2
PHP Code:
<?php
<body>
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<td align="center">
<iframe src ="http://downloads.xxx.xxx/" frameborder=0 width=100% height=800 scrolling=yes>
</iframe>
</td>
</table>
</body>
?>
please confirm if i did put a wrong code
br
gsmph
|
What you've entered is HTML, not PHP, so:
1. Delete it and go to the HTML page section => Add new page
2. Then remove the php and body tags, so you'll be left with just this:
PHP Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<td align="center">
<iframe src ="http://downloads.xxx.xxx/" frameborder=0 width=100% height=800 scrolling=yes>
</iframe>
</td>
</table>