Url Foto-Gallery-Script mit index + inhalt?

Schreib mal bitte ganz oben in die index.php:
PHP:
error_reporting(E_ALL);
Und lade das hoch das wir das online sehen könne.
Ich tippe ja das irgendeine Variable leer ist.

Wenn ich einfüge, dann kommt folgende Fehler-Meldung:
Parse error: parse error, unexpected T_STRING in /var/www/web7/html/index.php on line 43
 
Was steht in Zeile 43. Oder poste mal bitte die Datei.

Hallo!

Welche Datei soll ich posten
inhalt finden Sie ganz oben
Gallery Script finden Sie auch in txt Datei
es bleibt nur index.php und gallery.php überig der so ausschaut

PHP:
<?php include "./include/gallery.php" ?>

Vielen Dank
MfG
Nemani
 
index.php bitte. Will wissen was in Zeile 43 steht :)

PHP:
<?php include "./include/header.php" 
?>
<body>

	<table width="100%"  style="height:732px" border="0" cellspacing="0" cellpadding="0" align="center">
	  <tr>
	  <td width="50%" style="height:100%"  valign="top">
	  	<table width="100%" style="height:100%" border="0" cellspacing="0" cellpadding="0">
		  <tr>
			<td width="100%" style="background-image: url(/images/tail-t-l.jpg); background-repeat: repeat-x; background-position:;height:387px" valign="top"></td>
		  </tr>
		   <tr>
			<td width="100%" style="background-image: url(/images/tail-mid.jpg); background-repeat: repeat-x; background-position:;height:100%" valign="top"></td>
		  </tr>
		   <tr>
			<td width="100%" style="background-image: url(/images/b.jpg); background-repeat: repeat-x; background-position:;height:69px" valign="top"></td>
		  </tr>
		</table>
	  </td>
		<td width="766" style="height:732px"  valign="top">
			<table width="766"  style="height:732px"  border="0" cellspacing="0" cellpadding="0">
				<tr>
					<td width="766" style="background-image: url(/images/fl.jpg); background-repeat: no-repeat; background-position:;height:387px" valign="top">
						 <div style="margin-left:px; margin-top:-1px; margin-right:px; margin-bottom:px">
						   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="766" height="387">
                             <param name="movie" value="/flash/header01.swf">
                             <param name="quality" value="high">
                             <embed src="/flash/header01.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="766" height="387"></embed>
					       </object>
						 </div></td>
				</tr>
				<tr>
					<td width="766" style="background-image: url(/images/main.jpg); background-repeat: no-repeat; background-position:;height:276px" valign="top">
						<div style="margin-left:31px; margin-top:21px; margin-right:px; margin-bottom:15px">
							<table width="690" style="height:px" border="0" cellspacing="0" cellpadding="0">
							  <tr>
								<td>
								<?php include "./include/inhalt.php" ?>
								</td>
							  </tr>
							</table>
						</div>
					</td>
				</tr>
<?php include "./include/footer.php" ?>
 
Hier:
PHP:
include "./include/header.php"
fehlen die ; am Ende.
Am besten so schreiben:
PHP:
include ('./include/header.php');
Ok und das:
PHP:
error_reporting ( E_ALL );
so einfügen:
PHP:
<?php
    error_reporting ( E_ALL );
    include ('./include/header.php');
?>
dann sollte eigendlich kein Fehler mehr kommen.
Und falls doch, darfst du alle anderen Dateien posten ;)
 
Zuletzt bearbeitet:
Hier:
PHP:
include "./include/header.php"
fehlen die ; am Ende.
Am besten so schreiben:
PHP:
include ('./include/header.php');
Ok und das:
PHP:
error_reporting ( E_ALL );
so einfügen:
PHP:
<?php
    error_reporting ( E_ALL );
    include ('./include/header.php');
?>
dann sollte eigendlich kein Fehler mehr kommen.
Und falls doch, darfst du alle anderen Dateien posten ;)

Danke, aber es funktioniert noch immer nicht!

http://web7.vs107.vps4free.de/fotos.html
klicken Sie auf ein Foto, erscheitn die Startseite....

MfG
 
Da wird etwas mit der Verlinkung nicht stimmen. Das sind aber auch viele include's :)
Also bitte inhalt.php und gallery.php zeigen. Oder am besten alles in eine .rar (oder zip) damit ich mir das local mal ankucken/testen kann.
 
Zurück