Mailinglisten-Archive |
Hallo Liste! Ich hab wieder mal grobe Speed-Probleme (nicht die Droge).. Also: http://epos4.fidi-solutions.at/php/epos4/profil/profiltest.php macht das mal auf! Total Lahm...! Das script ist aber (eigentlich) ganz simpel. Nur ein Select! Ich füg das Script mal unten ein, vielleicht hat echt jemand die Nerven, und schaut drauf, und kann mir sagen, was da so bremst... Danke! Harald Achja, das Script: <html> <head> <title>Profil</title> <link href="../formate.css" rel="stylesheet" type="text/css"> </head> <body bgcolor="#B2B2B2" text="#000000" leftmargin="20" topmargin="20"> <? include '../include/dbopen.php'; echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">"; $sql="SELECT * FROM meinung_profil01 WHERE forumID=30284 ORDER BY nummer2 DESC, nummer1;"; $result = mysql_query($sql) or die ("Invalid query8"); while ($row = mysql_fetch_array($result)) { $ebenenMaximum=7; $ebenenAbstand=20; if ($row["ebene"]<=$ebenenMaximum) { $hSpace = $row["ebene"]*$ebenenAbstand; } else { $hSpace = $ebenenMaximum*$ebenenAbstand; } $datum=date("d.m.Y H:i",(strtotime($row["datum"]))); if ($row["ebene"]=="0") { echo "<tr><td><hr noshade color='#869BCC' size='1'></td></tr>"; } else { echo "<tr><td valign='top' class='little' style='padding-left:".$hSpace."px;'> </td></tr>"; } echo "<tr><td class='little' style='padding-left:".$hSpace."px;'>"."\r\n"; if ($row["nickname"]=="") { echo "<span id='a".$row["meinungsID"]."'></span><b><i>Gelöschter User</i></b>"; } else { echo "<span id='a".$row["meinungsID"]."'></span><b><font color='".$row["farbe"]."'>".$row["nickname"]."</span></font></b>"; } echo " | <span style='font-size:9px; color:#000000;'>".$datum."</span></td></tr>"; $original=urldecode($row["meinung"]); $original=str_replace("''","\"\"",$original); $original=nl2br($original); echo "<tr><td valign='top' class='little' style='padding-left:".$hSpace."px;'>".$row["name"]." - ".$original."</td></tr>"; echo "<tr><td valign='top' class='little' style='padding-left:".$hSpace."px;'><img src='../images/trans.gif' height='3' width='3'></td></tr>"; echo "<tr><td style='padding-left:".$hSpace."px;'>"; echo "</td></tr>"; } echo "</table><br>"; ?> </body> </html>
php::bar PHP Wiki - Listenarchive