MeTRoiD Posted July 9, 2007 Report Share Posted July 9, 2007 (edited) <?php if ($handle = opendir('C:/home page/xampp/htdocs/hltv/demo')) { while (false !== ($file = readdir($handle))) { if (strlen($file) > 4) { $gabali = explode('-', $file); $flag1 = $gabali[0]; $name1 = $gabali[1]; $flag2 = $gabali[2]; $name2 = $gabali[3]; $rez1 = $gabali[4]; $rez2 = $gabali[5]; $mape = $gabali[6]; $mapesgabali = explode(".", $mape); $name = $mapesgabali[0]; echo "<table>"; echo"<tr><td>Team </td><td>Team </td><td>Score Map </td></tr><br>"; echo "<tr><td><img src='bildes/flags/$flag1.png' width='18' height='12'/> $name1 </td><td><img src='bildes/flags/$flag2.png' width='18' height='12'/> $name2 </td><td>$rez1 - $rez2 $mape </td></td><td><a href=\"hltv/demo/$file\">Download</td></a></tr>"; echo "</table>"; } } closedir($handle); } ?> Izskatās šis kods šadi , kā izdarīt, lai rādītos tikai vienreiz Team, Team, Score, Map.. Izmēģināju daudz ko, bet nekā.. Kāds varētu pārveidot šo scriptu, lai rādītos tikai vienreiz team, team, score, map.. ? plz.. Edited July 9, 2007 by MeTRoiD Link to comment Share on other sites More sharing options...
hackerman Posted July 9, 2007 Report Share Posted July 9, 2007 echo "<table>"; echo"<tr><td>Team </td><td>Team </td><td>Score Map </td></tr><br>"; Šito koda daļu vnk izņem ārā no tās vietas un ieliec to pašā sākumā. Link to comment Share on other sites More sharing options...
MeTRoiD Posted July 9, 2007 Author Report Share Posted July 9, 2007 (edited) Mēģināju, nekā.. :/ Nū, ir, bet viņš nau sakārtojies viens zem otra, centies kā gribi, bet nekā.. :/ šādi izskatās, kad aukšā uzliek šo kodu šeit Edited July 9, 2007 by MeTRoiD Link to comment Share on other sites More sharing options...
hackerman Posted July 9, 2007 Report Share Posted July 9, 2007 (edited) Kas tie tādi? Tā neviens atstarpes netaisa. Ir tādi atribūtti kā width & height. P.S. Vienā vietā arī bija kļūda - </td></td>. P.S.S. Vieglāk un pārskatāmāk nebūtu, ja tu html nerakstītu iekš echo, bet atdalītu no php? P.S.S.S. Vēl gļuks varēja būt šeit: <td>Score Map</td>. Tur vairāk prasījās pēc šāda: <td>Score</td><td>Map</td> Edited July 9, 2007 by hackerman Link to comment Share on other sites More sharing options...
MeTRoiD Posted July 9, 2007 Author Report Share Posted July 9, 2007 Kas tie tādi? Tā neviens atstarpes netaisa. Ir tādi atribūtti kā width & height. width & height atspartes? :/ Link to comment Share on other sites More sharing options...
hackerman Posted July 9, 2007 Report Share Posted July 9, 2007 Ja tev būs pietiekami plats <td> tags, tev nevajadzēs likt tamlīdzīgas atstarpes. Link to comment Share on other sites More sharing options...
Kaklz Posted July 11, 2007 Report Share Posted July 11, 2007 <br /> starp </tr><tr> arī nav jāliek ;) Link to comment Share on other sites More sharing options...
Recommended Posts