Including foreign php files in static pages
Posted: Mon Jul 09, 2007 12:53 am
How it is possible to include foreign php files in static pages? I want to include the following code in the content field of a static page but it does not work.
Code: Select all
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><?php
include ('http://myhomepage.com/guestbook/gbook.php');
?></td>
</tr>
</table>