Buscando como cargar enlaces externos en una página con php, he visto esto:
Código PHP:
<!-- Manual de PHP de WebEstilo.com -->
<html>
<head>
<title>Ejemplo de PHP</title>
</head>
<body>
<A HREF="ejem06b2.phtml?dire=http://www.webestilo.com">www.webestilo.com</A><BR><BR>
<A HREF="ejem06b2.phtml?dire=http://www.terra.es">www.terra.es</A>
</body>
</html>
Ejecutar ejemplo Ver código fuente
ejem06a2.phtml
<!-- Manual de PHP de WebEstilo.com -->
<!-- frames -->
<FRAMESET ROWS="100,*">
<FRAME NAME="arriba" SRC="ejem06b3.html" MARGINWIDTH="10" MARGINHEIGHT="10" SCROLLING="auto" FRAMEBORDER="0">
<FRAME NAME="abajo" SRC="<?php echo $dire ?>" MARGINWIDTH="10" MARGINHEIGHT="10" SCROLLING="auto" FRAMEBORDER="0">
</FRAMESET>
Alguién me podría explicar como, y si hay alguna otra forma para cargar enlaces externos en una página web???
Muchas gracias.