i created a webpage and also a php page.i want to display the php page in

cheavalroi

New member
my webpage in a table.I inserted the? code below but when i preview the page,i cant see the poll.php displaying
.how can i do this correctly
<tr>
<td height="63" valign="top"><?php include("poll.php"); ?></td>
</tr>
 
PHP is server-side so regardless the browser they all get the same bytes (even if it doesn't render the same).
You could try an iFrame, but they are terrible SEO, and I just plain hate them.
Make sure the filepath is correct, ie. <?php include "poll/poll.php"; ?>
 
Back
Top