• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Text (inhalt) in einer tabelle "includen" ???

Status
Für weitere Antworten geschlossen.

palmenmann

Neues Mitglied
Hallo,
ich habe da ein Problem.

Also ....würde gerne einen Inhalt ( text der in html gespeichert ist) in eine
bestimmte Tabelle laden, wenn ich z.b. in der navigation Tabelle "home" anklicke u.s.w. .

Habe eine index.html datei mit meinen layout die in Tabellen angelegt ist,
daran soll sich nichts ändern nur der Inhalt / text soll in einer bestimmten Tabelle geladen werden.

Wie mache ich das ohne Frames..., kenne mich leider nicht php / includen aus.

das ist die Tabelle wor der text über denn hintergrund bild erscheinen soll.

</tr
<tr>
<td colspan="8">
<img src="Bilder/index_12.jpg" width="581" height="480" alt=""></td>
</tr>


meine Quellcode:index.html
<html>
<head>
<title>pokerevent4you</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor=#091E0D background="bilder/hg.gif" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table id="Tabelle_01" width="634" height="769" border="0" cellpadding="0" cellspacing="0"align=center>
<tr>
<td colspan="2">
<img src="Bilder/index_01.jpg" width="79" height="221" alt=""></td>
<td>
<img src="Bilder/index_02.jpg" width="80" height="221" alt=""></td>
<td>
<img src="Bilder/index_03.jpg" width="79" height="221" alt=""></td>
<td>
<img src="Bilder/index_04.jpg" width="79" height="221" alt=""></td>
<td>
<img src="Bilder/index_05.jpg" width="79" height="221" alt=""></td>
<td>
<img src="Bilder/index_06.jpg" width="80" height="221" alt=""></td>
<td>
<img src="Bilder/index_07.jpg" width="79" height="221" alt=""></td>
<td colspan="2">
<img src="Bilder/index_08.jpg" width="79" height="221" alt=""></td>
</tr>
<tr>
<td rowspan="3">
<img src="Bilder/index_09.jpg" width="26" height="547" alt=""></td>

<td colspan="8"> <img src="Bilder/index_10.jpg" alt="" width="581" height="25" border="0" usemap="#Map"></td>
<td rowspan="3">
<img src="Bilder/index_11.jpg" width="27" height="547" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="Bilder/index_12.jpg" width="581" height="480" alt=""></td>
</tr>
<tr>

<td colspan="8"> <img src="Bilder/index_13.jpg" alt="" width="581" height="42" border="0" usemap="#Map2"></td>
</tr>
<tr>
<td>
<img src="Bilder/Abstandhalter.gif" width="26" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="53" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="80" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="79" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="79" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="79" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="80" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="79" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="52" height="1" alt=""></td>
<td>
<img src="Bilder/Abstandhalter.gif" width="27" height="1" alt=""></td>
</tr>
</table>
<map name="Map">
<area shape="rect" coords="1,1,66,23" href="home.html">
<area shape="rect" coords="68,1,133,23" href="news.html">
<area shape="rect" coords="136,1,236,23" href="turniere.html">
<area shape="rect" coords="238,1,364,23" href="yourevent.html">
<area shape="rect" coords="367,1,510,23" href="fotogalerie.html">
<area shape="rect" coords="512,1,580,23" href="jobs.html">
</map>
<map name="Map2">
<area shape="rect" coords="28,5,79,25" href="kontakt">
<area shape="rect" coords="482,4,544,22" href="impressum.html">
</map>
</body>
</html>
 
An die gewünschte Stelle Folgendes einfügen:

PHP:
<?php include("Datei.php"); ?>

Musst du natürlich ersetzen durch die entsprechende/n Datei/en.

MfG Icy
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben