|
|
HTML Code |
1 2 3 4 5 6 7 8 9 10 11 |
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Test</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body> <?php include("http://fipsii.de/navi-1.html"); ?> </body> </html> |
|
|
PHP Quellcode |
1 2 3 |
<php? include("http://fipsii.de/navi-1.html"); ?> |
This post has been edited 2 times, last edit by "Fipsi" (Oct 19th 2010, 2:13pm)
|
|
HTML Code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Name: navi-1.html <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="/data/templates/css/css-navi.css" type="text/css" rel="stylesheet" /> </head> <body> <div id="navi"> <ul> <li><a href="/index.html">Startseite</a></li> <li><a href="/forum/">Forum</a></li> <li><a href="/news/">News</a></li> <li><a href="/shakes-and-fidget/">Shakes and Fidget</a></li> <li><a href="/kontakt.html">Kontakt</a></li> </ul> </div> </body> </html> |
|
|
PHP Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Name: test.php (<html> <head> <title>Test</title> </head> <body> <p>Test</p>) <?php include("/navi-1.html"); ?> </body> </html> |
|
|
XML Code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="/data/templates/css/css-navi.css" type="text/css" rel="stylesheet" /> </head> <body> <div id="navi"> <ul> <li><a href="/index.html">Startseite</a></li> <li><a href="/forum/">Forum</a></li> <li><a href="/news/">News</a></li> <li><a href="/shakes-and-fidget/">Shakes and Fidget</a></li> <li><a href="/kontakt.html">Kontakt</a></li> </ul> </div> </body> </html> |
|
|
PHP Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<?php header('Content-type: text/html; charset=utf-8'); # Header eingefügt ?> (<html> <head> <title>Test</title> </head> <body> <p>Test</p>) <?php include("navi-1.html"); # / entfernt ?> </body> </html> |
This post has been edited 1 times, last edit by "Fipsi" (Oct 20th 2010, 4:26pm)
This post has been edited 1 times, last edit by "pokertom" (Oct 20th 2010, 4:52pm)
|
|
HTML Code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="/data/templates/css/haupt-css.css" type="text/css" rel="stylesheet" /> </head> <body> <div id="header"> <?php include ("/data/templates/header.html"); ?> </div> <div id="mitte"> <div id="haupt">Test</div> <div id="navi"> <?php include ("/data/templates/start-navi.html"); ?> </div> <div id="rechts"> <?php include ("/data/templates/rechts.html"); ?></div> </div> <div id="footer"> <?php include ("/data/templates/footer.html"); ?> </div> </body> </html> |
This post has been edited 1 times, last edit by "Fipsi" (Oct 21st 2010, 7:33pm)
|
|
XML Code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="data/templates/css/haupt-css.css" type="text/css" rel="stylesheet" /> </head> <body> <div id="header"> <?php include ("data/templates/header.html"); ?> </div> <div id="mitte"> <div id="haupt">Test</div> <div id="navi"> <?php include ("data/templates/start-navi.html"); ?> </div> <div id="rechts"> <?php include ("data/templates/rechts.html"); ?></div> </div> <div id="footer"> <?php include ("data/templates/footer.html"); ?> </div> </body> </html> |