View Single Post
  #3 (permalink)  
Old 2008-04-14, 02:19 AM
cardi777 cardi777 is offline
Junior Member
 
Join Date: Apr 2008
Posts: 2
cardi777 is on a distinguished road
Default Thanks for response

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

Last edited by cardi777; 2008-04-14 at 02:39 AM.
Reply With Quote