Simple include Frage

Bardiel

Mitglied
Hi, ich habe ein Problem mit einem simplen include-Befehl.

Die inc's werden beim aufrufen des Links nicht eingesetzt. Woran könnte es liegen? :confused: Es wird bestimmt nur eine Kleinigkeit sein, die ich vergessen/übersehen habe...

Das Javascript lässt den Inhalt des Content-DIVs bei mouseover über die Grafiken (up.gif bzw. down.gif) hoch- bzw. runterscrollen. (funktioniert ohne Probleme)

blind.inc.php und start.inc.php enthalten ausschließlich unformatierten Text

Vielen Dank im voraus :)

index.php
PHP:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<link href="global.css" rel="stylesheet" type="text/css" />

<script type="text/javascript"><!--
	//coded by con-f-use@gmx.net - be fair and do not remove this

	function scrollDiv(strId,intSpd) {
		if ( objScrll=document.getElementById(strId) ) {
			var top = parseInt(objScrll.style.top);
			if ( (intSpd>0) ? (top<=0) : (top>=parseInt(objScrll.parentNode.style.height)-objScrll.offsetHeight) ) 
				objScrll.style.top = (top + intSpd) +"px";
			eval( 'tvar' + strId +'= setTimeout("scrollDiv(\''+ strId +'\',' + intSpd + ')",50)' );
			if (objSelf=scrollDiv.arguments[2]) 
				objSelf.onmouseup = objSelf.onmouseout = new Function('fx','clearTimeout(tvar' + strId + ')');
		}
	}
//--></script>

</head>

<body>

<table width="100%" height="100%">
<tr>
<td align="center" valign="top">
<div class="main_div">
		

		
<div class="navi">

<!--  NAVIGATION -->

	<div class="fliess">
				<table width="100%" border="0" class="fliess" >
				<tr>
					<td width="50%" >
					<div id="nav" >
					<ul style="list-style:none">
						<li><a href="index.php?id=01" title="a">a</a>
						</li>
						<li><a href="index.php?id=02" title="b">b</a>
						</li>
						<li><a href="#" title="c">c</a>
						</li>
					</ul>
					</div>
					</td>
					<td width="50%" >
					<div id="nav">
					<ul style="list-style:none">
						<li><a href="#" title="d">d</a>
						</li>
						<li><a href="#" title="e">e</a>
						</li>
						<li><a href="#" title="f">f</a>
						</li>
					</ul>
					</div>
					</td>
				</tr>
				</table>
	</div>		
</div>
		
		
		
	<div class="content fliess">
		<div align="right">
		<table align="right"><tr>
		<td align="center">

<!--
Hier sitzen die Grafiken und der Funktionsaufruf fürs Scrollen, fürs Forum rausgenommen
-->		


		</td>
		</tr>
			
			
		</table>
		</div>
		<div style="z-index:80;
							width:315px;
							height:248px;
							position:absolute;
							top:35px;
							left:0px;
							overflow:hidden;">
<!-- CONTENTBEREICH -->

						<div id="content" style="position: absolute; width: 312px; left: 0px; top: 0px;" >
							
							
							<?php		
							
								switch ($id) {
								
								case '01':
									include_once("start.inc.php");
									break;
								case '02':
									include_once("blind.inc.php");
									break;
								/*---*/		       
								default:
									include_once("blind.inc.php");    
								}  
							?>		
							
							
		    </div>
		  </div>
					
					
	</div>

</div>
	
</div>	
</td></tr></table>

</body>
</html>
 
Zurück