• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

AAC [Znote]

Webo

Otland 4ever
Joined
Oct 20, 2013
Messages
621
Solutions
10
Reaction score
229
Location
Warsaw
@Ninja @Znote
Hello im have problem subpages
how change this:
t3b5X34.png

to thais:
zjME1o5.png
 
Change this?
PHP:
            echo '<select name="newspage" onchange="location = this.options[this.selectedIndex].value;">';
            for ($i = 0; $i < $page_amount; $i++) {
                if ($i == $page) {
                    echo '<option value="index.php?page='.$i.'" selected>Page '.$i.'</option>';
                } else {
                    echo '<option     value="index.php?page='.$i.'">Page '.$i.'</option>';
                }
            }
           
            echo '</select>';
        } else {
            echo '<p>No news exist.</p>';
 
Change this?
PHP:
            echo '<select name="newspage" onchange="location = this.options[this.selectedIndex].value;">';
            for ($i = 0; $i < $page_amount; $i++) {
                if ($i == $page) {
                    echo '<option value="index.php?page='.$i.'" selected>Page '.$i.'</option>';
                } else {
                    echo '<option     value="index.php?page='.$i.'">Page '.$i.'</option>';
                }
            }
        
            echo '</select>';
        } else {
            echo '<p>No news exist.</p>';
Yes. The "if ($i == $page)" code is used to determine if the current tab (etc page 2) is the active/selected one. Not sure how you would write that in Bootstrap yet as I am not that familiar with it.
Perhaps just add the active class to the bt-group.
Change the <select> for btn-toolbar line, and the <option> for the btn-group line.
 
Last edited:
Back
Top