Changeset 9 for trunk/index.php
- Timestamp:
- Sep 14, 2018, 1:16:21 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r8 r9 193 193 $DbResult = $this->Database->query('SELECT * FROM Runner WHERE Id='.$RunnerId); 194 194 $DbRow = $DbResult->fetch_assoc(); 195 $Output .= '< h4 style="text-align: center;">Runner '.$DbRow['Name'].'</h4>';195 $Output .= '<div style="text-align: center;">Runner '.$DbRow['Name'].'</div>'; 196 196 197 197 … … 199 199 200 200 // Show detailed stats 201 $Output .= '<div style="text-align: center">Detailed</div> <br/>';201 $Output .= '<div style="text-align: center">Detailed</div>'; 202 202 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `RunnerStat` WHERE '.$Where); 203 203 $DbRow = $DbResult->fetch_row(); … … 251 251 $PageList = GetPageList($DbRow[0]); 252 252 253 $Output .= '<div style="text-align: center">Daily</div> <br/>';253 $Output .= '<div style="text-align: center">Daily</div>'; 254 254 $Output .= '<div id="list_content">'; 255 255 $Output .= $PageList['Output'];
Note:
See TracChangeset
for help on using the changeset viewer.