Icludes in Modul
Verfasst: Di 19. Okt 2004, 17:38
Hallo zusammen,
ich habe folgendes Problem: In einem Container möchte ich über ein Modul die gesammte rechte Leiste meiner Website integrieren. Soweit so gut, jedoch möchte ich in diesem Modul einige Dateien per "PHP-Include" einfügen, wie z.B.: Forum Login, Last Topics u.s.w.!
Also habe ich die die erste Datei in das Modul eingefügt wie folgt:
Anschließend habe ich eine zweite Datei versucht über "PHP-Include" einzufügen und zwar so:
Sobald ich die zweite Datei eingefügt habe, kommt bei jedem Aufrufen meiner Seite, die Contenido-LogIn Seite und nichts anderes mehr. Sobald ich das zweite Include rausnehme, geht alles wieder ohne Probleme!
Meine Frage jetzt: Wie viele Dateien kann ich in einem Container "Includen" bzw. woran liegt mein Problem?
MfG
Christoph[/code]
ich habe folgendes Problem: In einem Container möchte ich über ein Modul die gesammte rechte Leiste meiner Website integrieren. Soweit so gut, jedoch möchte ich in diesem Modul einige Dateien per "PHP-Include" einfügen, wie z.B.: Forum Login, Last Topics u.s.w.!
Also habe ich die die erste Datei in das Modul eingefügt wie folgt:
Code: Alles auswählen
<table width="204" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div align="right"><img src="images/header/space.gif" width="205" height="10" alt="Space"><br>
<img src="images/rightcontent/content/headlines/termin.gif" width="205" height="20" alt="_Termin!"></div>
</td>
</tr>
<tr>
<td valign="top" align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="7">
<tr>
<td>
<p> </p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div align="right"><img src="images/rightcontent/content/headlines/community.gif" width="205" height="20" alt="_Community"></div>
</td>
</tr>
<tr>
<td valign="top" align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="7">
<tr>
<td valign="top">
<p>
<?php include('/usr/home/single/www/1hiphop-pott.de/forum/login_index.php'); ?>
</p>
</td>
</tr>
<tr>
<td valign="top">
<table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#999999">
<tr>
<td bgcolor="#CCCCCC">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
Code: Alles auswählen
<table width="204" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div align="right"><img src="images/header/space.gif" width="205" height="10" alt="Space"><br>
<img src="images/rightcontent/content/headlines/termin.gif" width="205" height="20" alt="_Termin!"></div>
</td>
</tr>
<tr>
<td valign="top" align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="7">
<tr>
<td>
<p> </p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div align="right"><img src="images/rightcontent/content/headlines/community.gif" width="205" height="20" alt="_Community"></div>
</td>
</tr>
<tr>
<td valign="top" align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="7">
<tr>
<td valign="top">
<p>
<?php include('/usr/home/single/www/1hiphop-pott.de/forum/login_index.php'); ?>
</p>
</td>
</tr>
<tr>
<td valign="top">
<table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#999999">
<tr>
<td bgcolor="#CCCCCC">
<?php include('/usr/home/single/www/1hiphop-pott.de/forum/online_index.php'); ?>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
Meine Frage jetzt: Wie viele Dateien kann ich in einem Container "Includen" bzw. woran liegt mein Problem?
MfG
Christoph[/code]