Changeset 227 for quests/includes
- Timestamp:
- Jan 14, 2008, 9:43:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quests/includes/global.php
r225 r227 90 90 <tr> 91 91 <td width="150" valign="top"> 92 <br />93 <b>Odkazy:</b><br />94 92 <a href="index.php">Domù</a><br /> 95 93 <a href="http://wow.zdechov.net/forum/viewforum.php?f=22">Forum projektu</a><br /> … … 115 113 116 114 echo '<br /><form action="action.php" method="get"> 117 <input type="text" name="search" size=" 13"><br>115 <input type="text" name="search" size="8"> 118 116 <input type="submit" value="Hledat"> 119 117 </form> … … 121 119 122 120 if (Licence(0)) { 123 echo 'Jste pøihlá¹en jako: <b>'.$_SESSION['User'].'</b> <a href="index.php?Logout">Odhlásit</a>';121 // echo 'Jste pøihlá¹en jako: <b>'.$_SESSION['User'].'</b> <a href="index.php?Logout">Odhlásit</a>'; 124 122 } else { 125 123 echo ' … … 140 138 '; 141 139 } 142 echo '<br /><br />Online u¾ivatelé:<br />'; 140 141 echo '<p style=" overflow: auto; width: 100%; height: 200px;"> 142 <b>Shoutbox: </b><a href="action.php?shoutbox">Vlo¾it</a> 143 <table border="1" cellpadding="1" cellspacing="0">'; 144 $ID = $Database->SQLCommand("SELECT * FROM shoutbox ORDER BY ID DESC LIMIT 10"); 145 while ($Line = mysql_fetch_array($ID)) 146 echo '<tr><td><small><b>'.$Line['user'].'</b>: '.$Line['text'].'</small></td></tr>'; 147 echo '</table> 148 </p> 149 '; 150 151 echo 'Online u¾ivatelé:<br />'; 143 152 $ID = $Database->SQLCommand("SELECT user FROM `user` WHERE LastLogin >= Now()-300"); 144 153 while ($Line = mysql_fetch_array($ID)) … … 159 168 </td> 160 169 </tr> 161 <tr><td></td><td> <span style="color: grey">Program naprogramoval maron (maron2@cetrum.cz)</span> </td></tr> 170 <tr> 171 <td></td><td> <span style="color: grey">Program naprogramoval maron (maron2@cetrum.cz)</span>'; 172 if (Licence(0)) 173 echo ' Jste pøihlá¹en jako: <b>'.$_SESSION['User'].'</b> <a href="index.php?Logout">Odhlásit</a>'; 174 echo ' </td></tr> 162 175 </table> 163 176 </body>
Note:
See TracChangeset
for help on using the changeset viewer.