Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. echo "<center><select style=\"width: 150px;\" onChange=\"window.location = this.options[this.selectedIndex].value\"></center>";
  2.                     echo '
  3.                     <option>Pagina</option>
  4.         ';
  5.                         $queryAllUsers      = mysql_query("SELECT * FROM `[users]`");
  6.                         for($i = 0; $i < mysql_num_rows($queryAllUsers)/25; $i++) {
  7.                             $i2         = $i+1;
  8.                             echo '<option value="?p=ledenlijst&i='.$i.'">'.$i2.'</option>';
  9.                         }
  10.     echo '
  11.                     </select></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement