Hi, I want to make a navigation like this, on this page, which shows all the pages of the review. But before, these navigation has to be inserted by the user, right? How can I do it?

Right now I have my module like this -> http://www.oc-zone.com/modules.php?name=Reviews&rop=conteudo&id=5 You can turn page where it says "pagina seguinte". I do it, by inserting <!--pagebreak--> when I send the review. How can I change to a navigation like this:

And when I press, it goes like this:

Page:

http://www.anandtech.com/showdoc.html?i=1144

Thank You very much.

    I'm not sure what you mean... do you want a HTML select box as the navigation control?

    Just use some basic HTML and javascript:

    <select onChange="document.location.href=this.options[this.selectedIndex].value">
    <option value="http://www.mysite/page1.html">Page 1</option>
    <option value="http://www.mysite/page2.html">Page 2</option>
    <option value="http://www.mysite/page3.html">Page 3</option>
    <option value="http://www.mysite/page4.html">Page 4</option>
    </select>

    something like that is pretty simple...

    is that what you were after?

      Yes, that creates the navigation box. But I wanted to create a "tag" like this, for example

      <!--pagebreak-->Title od the page

      That would automatically add that navigatin menu, and the name of the page, when someone submits the review.

        Write a Reply...