Hey guys,
wonder if you guys can help me out.
Urm, how can i make a multipage menu for those results returned form my databases with php?

    can you explain what you mean by "multipage"

      <?php
      $counter = 10; // amount of numbes required
      $count = 1;
      while($counter > 0){ ?>
      <a href="http://example.com/page?id=
      
      <?php
      echo $count; 
      ?>
      "><?php echo $count ?></a>
      <?php
      $count = $count + 1;
      $counter = $counter - 1;
      }
      ?>
        Write a Reply...