Thanks for your efforts to help me out hoopyfrood
This morning I have discovered that someone else has fixed the problem for me. It turns out that the only way to make php include files correctly display all nested items is to use IFrame.
This was my previous code:
Code:
<?php include('$theLink');?>
This is the new code:
Code:
<iframe width="600" height="600" frameborder="0" src="<?php echo $theLink; ?>"></iframe>
Both these methods worked, but the second one displayer and linked correctly.
Hope that helps anyone else trying to do the same thing!
Cheers,
Doug