Hey everyone, I am an Administrator of a medium-large Forum Community. Recently it was suggested that I develop and code a Quick Find Thread system, basically, there would be a 6 digit number at the bottom of the page, that a user could save, and use to get to threads rather quickly, so I took it on, I've been working on it for about 3 days, and although it should be simple enough to do, I've ran into a host of problems.
This is the code that I currently have:
This produces a text box, and a submit button, that should in theory take the six digit code out of the text box, and add it to the end of the URL, thus directing them to the requested thread. However, it doesn't work. I've scavenged Google, and found nothing but unrelated code, that doesn't do any better.
Any ideas/advise would be appreciated.
Nick
This is the code that I currently have:
Code:
<form action="http://s15.zetaboards.com/Skillers_Union_Clan/topic/" method="post"/>
Jump to Thread:
<input type="text" class="text" value="" size="6" maxlength="6" />
</br>
<input name="Submit" type="submit"/>
</form>
This produces a text box, and a submit button, that should in theory take the six digit code out of the text box, and add it to the end of the URL, thus directing them to the requested thread. However, it doesn't work. I've scavenged Google, and found nothing but unrelated code, that doesn't do any better.
Any ideas/advise would be appreciated.
Nick