Hallo.....ich richte gerade ein Banner-System ein, bekomme
aber ständig an der Stelle, wo die Grafik erscheinen soll
einen parse error on line 121 in der ersten folgenden Datei!!
Weiter unten habe ich den Code, der an der Stelle eingegeben
wird, wo die Grafik erscheinen soll !! Ich habe schon alles
versucht, der error bleibt !! Kann jemand mal den Code checken, wäre sehr froh !!!!!!
Danke im voraus !!!!
<?
include "inc/config.inc.php3";
$time = time();
$date = getdate($time);
$datetoday = "$date[year].$date[mon].$date[mday]";
$adcount = 0;
$sql = "select id, prio from adbanner where (ads>0 or adklicks>0 or datum>='$datetoday') and startdatum<='$datetoday'";
$sqlid = mysql_query($sql);
while($daten = @mysql_fetch_row($sqlid))
{
if($prioritaet == 1)
{
for($priocount=0;$priocount < $daten[1];$priocount++)
{
$adcount++;
$account[$adcount] = $daten[0];
}
}
else
{
$adcount++;
$account[$adcount] = $daten[0];
}
}
if($adcount <= 0)
{
$accountnormal = 1000;
}
if($group)
{
$sql = "select accounts from adgroups where name='$group'";
$sqlid = mysql_query($sql);
$groupaccounts = mysql_fetch_row($sqlid);
$grouplist = split("\|",$groupaccounts[0]);
for($i=0;$i<count($grouplist);$i++)
{
for($q=1;$q<=count($account);$q++)
{
if($account[$q] == $grouplist[$i])
{
$account2[] = $account[$q];
}
}
}
$adcount = 0;
for($i=0;$i<count($account2);$i++)
{
$adcount++;
$account[$adcount] = $account2[$i];
}
if($adcount == 0)
{
$adcount = 1;
$account[1] = 1000;
}
}
if(!$reqid)
{
if($adcount > 0)
{
srand((double)microtime()*1000000);
if($adcount != 1)
{
$zufall = rand(1,$adcount);
}
else
{
$zufall = 1;
}
$accountnormal = $account[$zufall];
}
}
else
{
for($i=1;$i<=count($account);$i++)
{
if($account[$i] == $reqid)
{
$accountnormal = $reqid;
}
}
if($accountnormal != $reqid)
{
$accountnormal = 1000;
}
}
$sql = "update adbanner set ads=ads-1 where id=$accountnormal";
mysql_query($sql);
$sql = "select * from adaccounts where id=$accountnormal";
$sqlid = mysql_query($sql);
$account = mysql_fetch_row($sqlid);
$akttime = mktime(0,0,0,$date[mon],$date[mday],$date[year]);
if($account[14] < $akttime)
{
$sql = "insert into adstats values ($accountnormal,'$datetoday',0,0)";
mysql_query($sql);
$sql = "update adaccounts set statsdate=$akttime where id=$accountnormal";
mysql_query($sql);
}
$sql = "update adstats set ads=ads+1 where id=$accountnormal and datum='$datetoday'";
mysql_query($sql);
# Grafik Banner
if($account[11] == "img")
{
if($refresh)
{
echo "<meta http-equiv=\"refresh\" content=\"$refresh; URL=$SCRIPT_URI?$QUERY_STRING\">";
}
echo "<a href=\"$serverpath/c.php3?$accountnormal|&amp;|$account[3]\" target=\"$bannertarget\">";
echo "<img src=\"$account[2]\" border=\"0\" alt=\"$account[13]\" title=\"$account[13]\"";
if($bannerheight &amp;&amp; $bannerwidth)
{
echo "height=\"$bannerheight\" width=\"$bannerwidth\"";
}
echo "></a>";
}
# HTML-Banner
elseif($account[11] == "html")
{
$account[12] = ereg_replace("%%TIME%%","$time",$account[12]);
# Doubleclick #
if(ereg("%%IFRAME%%",$account[12]))
{
$iframe_url = split("%%IFRAME%%",$account[12]);
$datei = fopen("$iframeurl[1]","r");
while (!feof($datei))
{
$iframebanner .= fgets($datei,1000);
}
fclose($datei);
$iframebanner = ereg_replace("<html><body><HEAD><BASE HREF=\"http://ad.de.doubleclick.net/\"></head>","",$iframebanner);
$iframebanner = ereg_replace("</body></html>","",$iframebanner);
$account[12] = $iframebanner;
}
$account[12] = ereg_replace("<a href=\"","<a href=\"$serverpath/c.php3?$accountnormal|&amp;|",$account[12]);
$account[12] = ereg_replace("<A HREF=\"","<a href=\"$serverpath/c.php3?$accountnormal|&amp;|",$account[12]);
$account[12] = ereg_replace("%%FORM%%","$serverpath/click.php3",$account[12]);
$account[12] = ereg_replace("%%ID%%","$accountnormal",$account[12]);
if($refresh)
{
echo "<meta http-equiv=\"refresh\" content=\"$refresh\; URL=$SCRIPT_URI?$QUERY_STRING\">";
}
echo "$account[12]";
}
mysql_close();
?>
hier ist der Code, an welcher Stelle die Grafik eingefügt wird:
<iframe id="werbung" src="pfad zu v.php3" height="60" width="468" marginwidth="0" marginheight="0" clip="breite,höhe" border="0" frameborder="0" scrolling="no">
<ilayer id="temp" visibility="hidden" width="breite" height="höhe" border="0" scrolling="no" bordercolor="#000000">
</ilayer>
</iframe>
Kann mir hier jemand weiterhelfen ????
Gruß Wulcan
aber ständig an der Stelle, wo die Grafik erscheinen soll
einen parse error on line 121 in der ersten folgenden Datei!!
Weiter unten habe ich den Code, der an der Stelle eingegeben
wird, wo die Grafik erscheinen soll !! Ich habe schon alles
versucht, der error bleibt !! Kann jemand mal den Code checken, wäre sehr froh !!!!!!
Danke im voraus !!!!
<?
include "inc/config.inc.php3";
$time = time();
$date = getdate($time);
$datetoday = "$date[year].$date[mon].$date[mday]";
$adcount = 0;
$sql = "select id, prio from adbanner where (ads>0 or adklicks>0 or datum>='$datetoday') and startdatum<='$datetoday'";
$sqlid = mysql_query($sql);
while($daten = @mysql_fetch_row($sqlid))
{
if($prioritaet == 1)
{
for($priocount=0;$priocount < $daten[1];$priocount++)
{
$adcount++;
$account[$adcount] = $daten[0];
}
}
else
{
$adcount++;
$account[$adcount] = $daten[0];
}
}
if($adcount <= 0)
{
$accountnormal = 1000;
}
if($group)
{
$sql = "select accounts from adgroups where name='$group'";
$sqlid = mysql_query($sql);
$groupaccounts = mysql_fetch_row($sqlid);
$grouplist = split("\|",$groupaccounts[0]);
for($i=0;$i<count($grouplist);$i++)
{
for($q=1;$q<=count($account);$q++)
{
if($account[$q] == $grouplist[$i])
{
$account2[] = $account[$q];
}
}
}
$adcount = 0;
for($i=0;$i<count($account2);$i++)
{
$adcount++;
$account[$adcount] = $account2[$i];
}
if($adcount == 0)
{
$adcount = 1;
$account[1] = 1000;
}
}
if(!$reqid)
{
if($adcount > 0)
{
srand((double)microtime()*1000000);
if($adcount != 1)
{
$zufall = rand(1,$adcount);
}
else
{
$zufall = 1;
}
$accountnormal = $account[$zufall];
}
}
else
{
for($i=1;$i<=count($account);$i++)
{
if($account[$i] == $reqid)
{
$accountnormal = $reqid;
}
}
if($accountnormal != $reqid)
{
$accountnormal = 1000;
}
}
$sql = "update adbanner set ads=ads-1 where id=$accountnormal";
mysql_query($sql);
$sql = "select * from adaccounts where id=$accountnormal";
$sqlid = mysql_query($sql);
$account = mysql_fetch_row($sqlid);
$akttime = mktime(0,0,0,$date[mon],$date[mday],$date[year]);
if($account[14] < $akttime)
{
$sql = "insert into adstats values ($accountnormal,'$datetoday',0,0)";
mysql_query($sql);
$sql = "update adaccounts set statsdate=$akttime where id=$accountnormal";
mysql_query($sql);
}
$sql = "update adstats set ads=ads+1 where id=$accountnormal and datum='$datetoday'";
mysql_query($sql);
# Grafik Banner
if($account[11] == "img")
{
if($refresh)
{
echo "<meta http-equiv=\"refresh\" content=\"$refresh; URL=$SCRIPT_URI?$QUERY_STRING\">";
}
echo "<a href=\"$serverpath/c.php3?$accountnormal|&amp;|$account[3]\" target=\"$bannertarget\">";
echo "<img src=\"$account[2]\" border=\"0\" alt=\"$account[13]\" title=\"$account[13]\"";
if($bannerheight &amp;&amp; $bannerwidth)
{
echo "height=\"$bannerheight\" width=\"$bannerwidth\"";
}
echo "></a>";
}
# HTML-Banner
elseif($account[11] == "html")
{
$account[12] = ereg_replace("%%TIME%%","$time",$account[12]);
# Doubleclick #
if(ereg("%%IFRAME%%",$account[12]))
{
$iframe_url = split("%%IFRAME%%",$account[12]);
$datei = fopen("$iframeurl[1]","r");
while (!feof($datei))
{
$iframebanner .= fgets($datei,1000);
}
fclose($datei);
$iframebanner = ereg_replace("<html><body><HEAD><BASE HREF=\"http://ad.de.doubleclick.net/\"></head>","",$iframebanner);
$iframebanner = ereg_replace("</body></html>","",$iframebanner);
$account[12] = $iframebanner;
}
$account[12] = ereg_replace("<a href=\"","<a href=\"$serverpath/c.php3?$accountnormal|&amp;|",$account[12]);
$account[12] = ereg_replace("<A HREF=\"","<a href=\"$serverpath/c.php3?$accountnormal|&amp;|",$account[12]);
$account[12] = ereg_replace("%%FORM%%","$serverpath/click.php3",$account[12]);
$account[12] = ereg_replace("%%ID%%","$accountnormal",$account[12]);
if($refresh)
{
echo "<meta http-equiv=\"refresh\" content=\"$refresh\; URL=$SCRIPT_URI?$QUERY_STRING\">";
}
echo "$account[12]";
}
mysql_close();
?>
hier ist der Code, an welcher Stelle die Grafik eingefügt wird:
<iframe id="werbung" src="pfad zu v.php3" height="60" width="468" marginwidth="0" marginheight="0" clip="breite,höhe" border="0" frameborder="0" scrolling="no">
<ilayer id="temp" visibility="hidden" width="breite" height="höhe" border="0" scrolling="no" bordercolor="#000000">
</ilayer>
</iframe>
Kann mir hier jemand weiterhelfen ????
Gruß Wulcan
Kommentar