Changeset 196 for trunk/aktuality/subscription.php
- Timestamp:
- Apr 27, 2009, 8:00:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/aktuality/subscription.php
r151 r196 20 20 $Output = 'Výsledný RSS kanál: <a href="'.$Select.'">'.$Select.'</a>'; 21 21 } else 22 22 { 23 23 $Output = 'Vytvořte si vlastní RSS kanál, díky kterému budete moci automaticky sledovat novinky pomocí vaší RSS čtečky. Informace o technologii RSS a programech pro čtení kanálů najdete např. <a href="http://www.lupa.cz/clanky/prehled-rss-ctecek/">zde</a><br />'. 24 24 '<br />Kategorie:<br />'; 25 25 $Output .= '<form action="subscription.php?build=1" method="post">'; 26 $DbResult = $this->Database->select(' news_category', '*', '1 ORDER BY caption');26 $DbResult = $this->Database->select('NewsCategory', '*', '1 ORDER BY Caption'); 27 27 while($Category = $DbResult->fetch_array()) 28 28 { 29 $Output .= '<input type="checkbox" name="category'.$Category[' id'].'" />'.$Category['caption'].'<br />';29 $Output .= '<input type="checkbox" name="category'.$Category['Id'].'" />'.$Category['Caption'].'<br />'; 30 30 } 31 31 $Output.= '<input type="submit" value="Sestavit " />'. 32 32 '</form>'; 33 33 } 34 34 return($Output); 35 35 } 36 36 }
Note:
See TracChangeset
for help on using the changeset viewer.