- Home
- Categorie
- Coding e Sistemistica
- PHP
- Pagine uscenti in frame
-
Pagine uscenti in frame
Ciao,
Spero di non ever sbagliato sezione.
Mi servirebbe un metodo per fare in modo che le pagine uscenti del mio sito venissero visualizzate in un iframe in modo da avere l'header del mio sito.
Per esempio c'è un link verso giorgiotave.it e voglio che giorgiotave viene visualiazzato in un frame all'interno del mio sito.
è possibile farlo con qualche metodo veloce veloce ??
-
Ecco un esempio semplice che ti permette di avere due siti in un'unica pagina.
index.htm
<html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>iframe</title> </head> <frameset rows="115,*"> <frame name="main" src="main.htm" scrolling="no" marginwidth="0" marginheight="0"> <frame name="sito"> <noframes>Il tuo browser non supporta i frame.</noframes> </frameset> </html> ```main.htm
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Tua Pagina</title>
</head>
<body>
<p><a href="http://www.sito.it/" target="sito">www.sito.it</a></p>
</body>
</html>