if you have a link like so
<a href="http://www.mysite.com/links.php/www.google.com">link</a>
then links.php should read something like this:
PHP Code:
<?php
if(!empty($_SERVER['PATH_INFO'])){
$src = "http://".$_SERVER['PATH_INFO'];
echo '<iframe src ="' . $src . '" width="100%" height="300"></iframe>';
}
you'll have to check if and how your server sets the path info variable (some don't), and remember to write all the links is the same way (if some are written with the http:// and some are written without, you'll have to check each time and build the $src variable correctly).
Bookmarks