also erst mal in welchem Sinne erzeugt er ein Bild?
wahrscheinlich ist einfach das Script nicht richtig, um als img ausgegeben zu werden...
poste mal den code
Beantworte nie Threads mit mehr als 15 followups...
Real programmers confuse Halloween and Christmas because OCT 31 = DEC 25
$link=mysql_connect($hoster, $login, $passw)or die ("Konnte keine
Verbindung herstellen!");
mysql_select_db($datenb,$link) or die
("Datenbank nicht vorhanden!");
$queryone=mysql_query("SELECT * FROM mthphpcount_ip_$tabid where ip='$ip'", $link);
$querytwo=mysql_num_rows($queryone);
if($querytwo == "0")
{
$order=mysql_query("UPDATE mthphpcount_hi_$tabid SET hits=hits+1", $link);
$order2=mysql_query("Select login, lastlogin from mthphpcount_hi_$tabid", $link);
$fetchit=mysql_fetch_array($order2, $link);
$my01=mysql_query("Update mthphpcount_hi_$tabid SET lastlogin='$fetchit[login]'", $link);
$my02=mysql_query("Update mthphpcount_hi_$tabid SET login='$zeit'", $link);
$my03=mysql_query("INSERT INTO mthphpcount_ip_$tabid (dates, del, ip) VALUES ('$datum', '$zeit', '$ip')", $link);
}
$my04=mysql_query("DELETE FROM mthphpcount_ip_$tabid WHERE del<$loeschzeit",$link);
$ausgabe=mysql_query("SELECT * FROM mthphpcount_hi_$tabid", $link);
$getit=mysql_fetch_array($ausgabe);
print "<center>";
print "<!--- MTHphpCount-Ext V. 1.0 by Maximilian Thoma - Copyright (c) 2002 by Maximilian Thoma - http://www.mth-solutions.de - scripts@mth-solutions.de --->";
print "<font color=\"$f_color\" size=\"$f_size\" face=\"$f_face\">";
if($datum1=="true"){
print "Datum: <br>";
echo date("d.m.Y"). "<br>";
}
if($uhr1=="true"){
print "Uhrzeit:<br>";
echo date("$uh_form");
}
print "</font>";
print "<br><br>";
if($insg_c=="true")
{
print "<font color=\"$f_color\" size=\"$f_size\" face=\"$f_face\">$f_besucher $getit[hits]</font><br>";
}
$deleteuser= mysql_query( "delete from mthphpcount_uo_$tabid where DATE < $zeitz -2000", $link);
$usergesamt= mysql_fetch_row(MYSQL_QUERY( "SELECT * FROM mthphpcount_uo_$tabid where IP='$ip'", $link));
if($usergesamt == false)
{
$ok= @mysql_query( "insert INTO mthphpcount_uo_$tabid (ID,IP,NAME,DATE) VALUES('$User_Id','$ip','$HOST','$zeitz')", $link)or die( "Unable to query
db!");
}
$resultit = mysql_query( "SELECT Count(*) as total FROM mthphpcount_uo_$tabid", $link);
$my07= mysql_fetch_array($resultit);
if($gera_c=="true"){
echo "<font color=\"$f_color\" size=\"$f_size\" face=\"$f_face\">$my07[total] $f_besucheronline<br></font>";
}
wie genau muss ich das denn machen. ich meine, das script kennst du ja. reicht es, wenn ich die zeilen einfach am ende des scripts einfüge oder könntest du mir das script dementsprechend ändern???
Kommentar