AlCher
Karma: 0
|
glossary.php - 2005/09/12 19:43
1. function GlossaryABC(&$glossary, $letter, $page=1) line - return substr($nav,0,strlen($nav)-3)."n</div>nn"; // end of HTML 'strlen ($nav)-3' shortens tag "/a" at the end of a line. Is displayed as "/
| Code: | <a href='index.php?option=com_glossary&func=display&letter=Other&Itemid=56&catid=36&page=1'Other</
Should be: <a href='index.php?option=com_glossary&func=display&letter=Other&Itemid=56&catid=36&page=1'>Other</a>
|
2. A code:
| Code: | echo ' <a href="'.$url.'">$i</a>'; Is displayed: $i $i $i $i
If to use a code: echo "<a href='".$url."'>$i</a>"; that displayes 1 2 3 4
|
|