Changeset 70 for trunk/Modules/Dance/Dance.php
- Timestamp:
- Mar 30, 2024, 11:26:09 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Dance/Dance.php
r63 r70 45 45 if ($DbResult->num_rows > 0) 46 46 { 47 $MeetItem = $DbResult->fetch_assoc(); 48 if ($MeetItem['Link'] != '') $Link = '<a href="'.$MeetItem['Link'].'">Odkaz</a>'; 49 else $Link = ''; 47 $DanceItem = $DbResult->fetch_assoc(); 50 48 $Output .= '<table class="ItemTable">'. 51 '<tr><th>Jméno</th><td>'.$ MeetItem['Name'].'</td></tr>'.52 '<tr><th>Skupina</th><td>'.$ MeetItem['DanceGroupName'].'</td></tr>';49 '<tr><th>Jméno</th><td>'.$DanceItem['Name'].'</td></tr>'. 50 '<tr><th>Skupina</th><td>'.$DanceItem['DanceGroupName'].'</td></tr>'; 53 51 $Output .= '</table>'; 54 52 } else $Output .= 'Položka nenalezena';
Note:
See TracChangeset
for help on using the changeset viewer.