unerkläliche shlashes PHP
-
Hallo zusammen,
Iregndwie erscheinen bei mir auf der seite unerklärliche shlashes
hier mal der link http://flirt.kimserver.de/
Wenn ihr den code braucht bin ich gerne bereit ihn bereitzustellen
ich weiss nur nicht welche daten ich euch hier alle posten soll
ich wäre dankbar über jede Hilfe
mfg
-
Zeig' mal den Beginn eines PHP-Blocks und das Ende eines PHP-Blocks bei dir her. Sicher, dass du da nicht wie bei HTML unabsichtlich einen Slash eingebaut hast? Korrekt ist:
<?php //code hier ?>
MfG SideWinder
-
Hallöchen,
index.php
<?php include "config.inc.php"; include "templates/secure.php"; include "templates/header.php"; $t = new Template; $t->set_file("templates/".$template_name."/index.html"); $t->set_var("W_TOP_WOMAN", W_TOP_WOMAN); $t->set_var("W_WELCOME", W_WELCOME); $t->set_var("W_TOP_MAN", W_TOP_MAN); $sql = "SELECT * FROM ".$mysql_hits." where gender = '2' and pic != '' order by hits DESC limit 3"; $result = mysql_query($sql) or die(mysql_error()); unset($tmp); while ($i = mysql_fetch_array($result)) { $tmp = "<a href=view.php?l=".$l."&id=".$i[id]."><img src=".$i[pic]." width=140 border=0></a><br><span class=mes>".$i[user].", ".$i[city]."<br>".W_POPULARITY." : ".$i[hits]."<br><br>"; $t->set_var("TOPWOMANS", $tmp); $t->parse("1Cycle", "1Cycle", true); } if (!isset($tmp)) { $t->set_var("TOPWOMANS", W_NO_POP_W); $t->parse("1Cycle", "1Cycle", true); } $t->set_var("W_WELCOME_MES", W_WELCOME_MES); $t->parse("1part", "1part", true); $sql1 = "SELECT count(id) as total1 FROM ".$mysql_table." where gender = '1'"; $sql2 = "SELECT count(id) as total2 FROM ".$mysql_table." where gender = '2'"; $result1 = mysql_query($sql1) or die(mysql_error()); $result2 = mysql_query($sql2) or die(mysql_error()); // counting $trows = mysql_fetch_array($result1); $malenum = $trows[total1]; $trows = mysql_fetch_array($result2); $femalenum = $trows[total2]; $total = $malenum + $femalenum; if ($total != 0) { $procm = $malenum * 160 / $total; $procf = $femalenum * 160 / $total; SetType($procm,"integer"); SetType($procf,"integer"); $t->set_var("W_SOME_STAT", W_SOME_STAT); $t->set_var("W_STATISTIC", W_STATISTIC); $t->set_var("W_GENDER", W_GENDER); $t->set_var("W_DESCRIPTION", W_DESCRIPTION); $t->set_var("W_GRAPHIC", W_GRAPHIC); $t->set_var("W_QUANTITY", W_QUANTITY); $t->set_var("W_TOTAL_MEMBERS", W_TOTAL_MEMBERS); $t->set_var("TOTAL", $total); $t->set_var("MANSGRAPH", $langgender[1]); $t->set_var("PROCM", $procm); $t->set_var("MANSNUM", $malenum); $t->set_var("WOMANSGRAPH", $langgender[2]); $t->set_var("PROCF", $procf); $t->set_var("WOMANSNUM", $femalenum); $t->parse("statistic", "statistic", true); } /* Begin Last users statistic */ if (($total >= $last_reg)&&($last_reg != "0")) { $t->set_var("W_LAST", W_LAST); $t->set_var("C_LAST_REG", $last_reg); $t->set_var("W_REGISTERED", W_REGISTERED); $t->set_var("W_USERNAME", W_USERNAME); $t->set_var("W_CATEGORY", W_CATEGORY); $t->set_var("W_CITY", W_CITY); $t->set_var("W_PHOTO", W_PHOTO); $sql = "SELECT * FROM ".$mysql_table." order by imgtime DESC limit ".$last_reg; $result = mysql_query($sql) or die(mysql_error()); $sayi = 0; while ($i = mysql_fetch_array($result)) { if ($i[pic] == "") $picav = W_NONE; else $picav = "<a href=view.php?l=".$l."&id=".$i[id].">".W_YES."</a>"; $sayi++; $ulink = "<a href=view.php?l=".$l."&id=".$i[id].">".$i[user]."</a>"; $cat = $langgender[$i[gender]]." ".$langpurposes[$i[purposes]]; $t->set_var("SAYI", $sayi); $t->set_var("ULINK", $ulink); $t->set_var("CAT", $cat); $t->set_var("CITY", $i[city]); $t->set_var("PICAV", $picav); $t->parse("Cycle", "Cycle", true); } $t->parse("lastusers", "lastusers", true); } $sql = "SELECT * FROM ".$mysql_hits." where gender = '1' and pic != '' order by hits DESC limit 3"; $result = mysql_query($sql) or die(mysql_error()); unset($tmp); while ($i = mysql_fetch_array($result)) { $tmp = "<a href=view.php?l=".$l."&id=".$i[id]."><img src=".$i[pic]." width=140 border=0></a><br><span class=mes>".$i[user].", ".$i[city]."<br>".W_POPULARITY." : ".$i[hits]."<br><br>"; $t->set_var("TOPMANS", $tmp); $t->parse("3Cycle", "3Cycle", true); } if (!isset($tmp)) { $t->set_var("TOPMANS", W_NO_POP_M); $t->parse("3Cycle", "3Cycle", true); } $t->parse("2part", "2part", true); $t->pparse(); include "templates/footer.php"; ?>
header.php
<?php $mtime1 = explode(" ", microtime()); $starttime = $mtime1[1] + $mtime1[0]; include_once $int_path."/classes/AzDG.template2.inc.php"; //include_once $int_path."/classes/AzDG.template3.inc.php"; $t = new Template; $t->set_file($int_path."/templates/".$template_name."/header.html"); $t->set_var("W_CHARSET", W_CHARSET); $t->set_var("C_URL", $url); $t->set_var("LANGUAGE", $l); $t->set_var("C_FLAG_PATH", $flag_path); $t->set_var("W_ADD_USER", W_ADD_USER); $t->set_var("W_MEMBERS_AREA", W_MEMBERS_AREA); $t->set_var("W_SEARCH", W_SEARCH); $t->set_var("W_FEEDBACK", W_FEEDBACK); $t->set_var("W_STATISTIC", W_STATISTIC); $t->set_var("W_MAIN_PAGE", W_MAIN_PAGE); $t->set_var("W_FAQ", W_FAQ); // Check language selected or no, show language or no if (!(($l != "") && ($show_lf == "0"))) { $handle=opendir("$int_path/$flag_path"); $filenumber = 0; while (false!==($file = readdir($handle))) { if ($file != "." && $file != "..") { $langfile[$filenumber] = substr($file,0,strpos($file,'.')); $filenumber++; } } closedir($handle); if ($filenumber == 0) { $t->set_var("W_LANGUAGES", W_NO_LANG); } else { $i = 0; $t->set_var("W_LANGUAGES", W_LANGUAGES); for ($i = 0; $i < $filenumber; $i++) { $t->set_var("LANG", $langfile[$i]); $t->parse("languages_cycle", "languages_cycle", true); } } $t->parse("if_no_selected", "if_no_selected", true); } $t->parse("header", "header", true); $t->parse("postheader", "postheader", true); $t->pparse(); ?>
header.html
<!--@ BEGIN header --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN"> <html> <head> <title>KIMSERVER Dating Kostenlos Kontakte finden und flirten</title> <META name=robots content=all> <META HTTP-EQUIV="Expires" Content="0"> <meta http-equiv=Content-Type content="text/html; charset={W_CHARSET}"> <META name=description content="Hier können sie kostenlos flirten und kontakte finden oder einfach nur nette leute kennenlernen"> <META name=keywords content="dating,Kontakte,finden,und,flirten"> <style type="text/css"> a:link { text-decoration:none; font-size:12px; color:blue } a:visited { text-decoration:none; font-size:12px; color:blue } a:hover { text-decoration:none; font-size:12px; color:red } a.menu:link {font-weight:bold;font-size:11px; text-decoration:none;color:black} a.menu:visited {font-weight:bold;font-size:11px; text-decoration:none;color:black} a.menu:hover {font-weight:bold;font-size:11px; text-decoration:none;color:#E0A850} td { font-family:Verdana,tahoma; font-size:12px; } .mes { font-family:Verdana,tahoma; font-size:12px; color:black; font-weight:bold; test-align:justify; } .desc { font-family:Verdana,tahoma; font-size:12px; color:black; font-weight:bold; } .small { font-family:Verdana,tahoma; font-size:11px; color:black; font-weight:bold; } .dat { font-family:Verdana,tahoma; font-size:12px; color:red; font-weight:bold; } .head { font-family:Verdana,tahoma; font-size:14px; color:red; font-weight:bold; } .button { font-family:Verdana; font-size:12px; color:navy; background:#E0A850; border: black; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; width:100px } .input,.textarea,.select { font-family:Verdana; font-size:12px; color:navy; background:#F0F0B0; border: black; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; width:200px } .sinput { font-family:Verdana; font-size:12px; color:navy; background:#F0F0B0; border: black; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; width:50px } </style> </head> <body bgcolor=#F0F0B0 leftmargin=0 topmargin=0> <center><Table Border="0" CellSpacing="0" CellPadding="0"> <Tr> <Td Width="740" Height="96"><Img Src="{C_URL}/images/logo.jpg" Border="0" Height="96" Width="740"></Td> </Tr> </Table> <center> <Table Border="1" CellSpacing="0" CellPadding="2" bgcolor=#F0E8A0 bordercolor=black> <Tr> <Td Width="99" align="center"><a href="{C_URL}/index.php?l={LANGUAGE}" class=menu>{W_MAIN_PAGE}</a></Td><Td Width="99" align="center"><a href="{C_URL}/add.php?l={LANGUAGE}" class=menu>{W_ADD_USER}</a></Td><Td Width="100" align="center"><a href="{C_URL}/login.php?l={LANGUAGE}" class=menu>{W_MEMBERS_AREA}</a></Td><Td Width="99" align="center"><a href="{C_URL}/search.php?l={LANGUAGE}" class=menu>{W_SEARCH}</a></Td><Td Width="100" align="center"><a href="{C_URL}/email.php?l={LANGUAGE}" class=menu>{W_FEEDBACK}</a></Td><Td Width="99" align="center"><a href="{C_URL}/faq.php?l={LANGUAGE}" class=menu>{W_FAQ}</a></Td><Td Width="100" align="center"><a href="{C_URL}/stat.php?l={LANGUAGE}" class=menu>{W_STATISTIC}</a></Td></Tr> <!--@ END header --> <!--@ BEGIN if_no_selected --> <Tr><Td align="right" colspan=7><b>{W_LANGUAGES}</b> <!--@ BEGIN languages_cycle --> <a href={C_URL}/index.php?l={LANG}><img src="{C_URL}/{C_FLAG_PATH}/{LANG}.gif" width="20" height="13" border="0"></a> <!--@ END languages_cycle --> <!--@ END if_no_selected --> <!--@ BEGIN postheader --> </Td></Tr> </Table> <!--@ END postheader -->
das mal so für den anfang ich bin hier am verzweifeln
-
Da sind dermaßen viele Fehler drinnen ... der Code ist
von anno Tobak. Ich würde erstmal HTML lernen.http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fflirt.kimserver.de%2F
Hinter jedem </table> taucht der (Back)Slash auf. Besorge Dir bitte Firefox und
die Extension Firebug - dann hast Du das schnell gefunden. Ich würde mir da mal
speziell veraltete Tags wie center etc mal genauer ansehen ...Nur Mut, Joe.
-
Hallo erstmal danke für die Hilfe
Ich kann html sowie php brauch ich also nicht lernen....
Allerdings finde ich den Fehler noch immer nicht.
Ich habe mir mittlerweile alle datein mindestens 30 mal angeschaut.
Mit firebug konnte ich auch nicht wirklich was erreichen
ich hoffe ihr könnt mir helfen
mfg
-
Wenn Du HTML etc kannst solltest Du erstmal den Code validieren und
den Kram in Ordnung bringen. Den entsprechenden Link hatte ich gepostet.
-
Hehe, ja du kannst HTML offenbar ungefähr genausogut wie Englisch. Ich würde beides nochmal von vorne lernen
-
was ist den mit meinem englisch?
-
derdefeckter schrieb:
was ist den mit meinem englisch?
Falls du die Texte auf http://flirt.kimserver.de/ geschrieben hast: alles. Ich hab keinen Satz ohne Fehler gefunden... aber wie gesagt, dein HTML ist nicht besser
-
BierzeltOmi schrieb:
derdefeckter schrieb:
was ist den mit meinem englisch?
Falls du die Texte auf http://flirt.kimserver.de/ geschrieben hast: alles.
Hm da hab ich wohl gelesen "was ist denn falsch mit meinem englisch".
Nunja jedenfalls ist es unterirdisch, soll meine Aussage da oben heißen...
-
Naja erstmal sollte das script laufen und denn kann man nochmal alles ordentlich translaten ich habe da nur das deutsche gemacht russisch und englisch war schon drinne
mfg