Hallo Leute,
Ich bin gerade ein wenig am basteln und jetzt hänge ich bei einem Problem wo ich einfach nicht weiter komme! Ich bin gerade dabei ein CMS farblich usw. anzupassen!
Ich habe jetzt in Java etwas gecodet und will dieses nun in einen bestimmten Bereich auf meiner Seite einbauen! Den Code welchen ich einbauen will ist folgender:
Wenn ich ihn auf meiner Seite einbaue funktioniert es auch einwandfrei! Jedoch will ich den Code an einer bestimmten Stelle einbauen und da funktioniert es einfach nicht. Im Anschluss ein Ausschnitt von meiner home.php wo ich den Code einfügen möchte:
ZitatAlles anzeigen<!-- main start -->
<div id="main">
<!--main content -->
<div style="float:left;" align="left">
<table width="900" border="0">
<tr>
<td class="maincontentbg" valign="top">
<?
if($index == yes){
<script src="acac1.js" type="text/javascript"></script><script>ac1init_doc('',0);</script>
//Site Stats Block //////////////////
echo"<div class='sidebar-con3' style='margin-left: 8px;'><div class='sidebar-title3'><font color='#FFFFFF'><div class='sidebar-title-text'>Site Stats</div></div>
<table width='100%' align='center' border='0' cellspacing='0'>";
$timeoutseconds = 300;
$timestamp = time();
$timeout = $timestamp-$timeoutseconds;
$uonline = mysql_num_rows(mysql_query("SELECT id FROM members WHERE lastactive>$timeout"));
if($uonline == 1){echo"<tr><td background='$config[cellbg]'>There is $uonline user online.</td></tr>";
}else{echo"<tr><td background='$config[cellbg]'>There are $uonline users online.</td></tr>";}
$whosonline=mysql_query("SELECT id,name FROM members WHERE lastactive>$timeout ORDER BY name");
while(list($id,$name)=mysql_fetch_row($whosonline)){
$max_length = 16;
if (strlen($name) > $max_length){
$name = substr($name,0,$max_length);
$name .= ".."; }
if($uonline == 1){$outuseron.="<a href='./profile.php?account=$id'>$name</a>";
}else{$outuseron.="<a href='./profile.php?account=$id'>$name</a>, ";}
}
if ($uonline > 1){
$outuseron = substr($outuseron,0,-2);
$outuseron.= "."; }
if ($uonline > 0){
echo"<tr><td background='$config[cellbg]'><div id='show_name3' style='display: block;'>[<a href='javascript:displayOptions(1,1,0);'>Show Names</a>]</div>
<div id='show_name2' style='display: none;'>[<a href='javascript:displayOptions(0,0,1);'>Hide Names</a>]</div></td></tr>";
}
echo"<tr><td background='$config[cellbg]'><div id='show_name' style='display: none;'><br />$outuseron</div></td></tr>";
$newest=mysql_query("SELECT id,name FROM teams ORDER BY id DESC LIMIT 0,1");
while(list($id,$name)=mysql_fetch_row($newest)){
if($config[cellbgx]==$config[cellbg]){$config[cellbgx]="$config[cellbg2]";}else{$config[cellbgx]="$config[cellbg2]";}
echo"<tr><td background='$config[cellbg]'><br />Welcome to our newest team: <a href='./stats.php?account=$id'>$name</a></td></tr>";
}
$newest=mysql_query("SELECT id,name FROM members ORDER BY id DESC LIMIT 0,1");
while(list($id,$name)=mysql_fetch_row($newest)){
if($config[cellbgx]==$config[cellbg]){$config[cellbgx]="$config[cellbg2]";}else{$config[cellbgx]="$config[cellbg2]";}
echo"<tr><td background='$config[cellbg]'>and to our latest member: <a href='./profile.php?account=$id'>$name</a></td></tr><tr><td> </td></tr>";
}
$memspotlight=mysql_query("SELECT id,name,photo FROM members ORDER BY RAND() LIMIT 0,1");
while(list($id,$name,$photo)=mysql_fetch_row($memspotlight)){
if(($photo) && ($photo!="http://")){
$mphoto="<img src='$photo' border='0' onLoad='resize_logo2( this );' height='94'/>";
}
else{
$mphoto="<img src='./images/profile/nologo.gif' border='0' height='94' width='94'/>";
}
echo"<tr><td background='$config[cellbg]' align='center'><br /><strong><i><font color='#ffcc00'>Featured Member</font></i></strong></td></tr>
<tr><td background='$config[cellbg]' align='center'><a href='./profile.php?account=$id'>$name</a><br />$mphoto</td></tr>
<tr><td background='$config[cellbg]' align='center'>
<a href='./profile.php?action=addfriend&user=$id'><img src='./theme/default/images/new/button2.gif' border='0'/></a><a href='./profile.php?action=invite&mem=$id'><img src='./theme/default/images/new/button3.gif' border='0'/></a></td></tr>";
}
echo"
</table></div>
</div>";
}
//END Site Stats/////////////////////////////
Ich habe den Code fett markiert wo ich ihn gerne hätte aber wenn ich es so mache kommt im Browser folgende Fehlermeldung:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /var/www/XXXXXXX/html.php on line 476
Kann mir jemand helfen was ich falsch habe? Wie schaut es denn richtig aus? Ich bitte um eure Hilfe!
Lg
Christoph