Forum Moderators: open

Message Too Old, No Replies

Link based on any given number

         

Romsky

9:47 pm on May 23, 2005 (gmt 0)



Okay, I am having some trouble here.

I want a person to be able to enter lets say "12345" in a box on my site, then hit a button, then they will be brought to "www.mysite.com/12345.pdf"

SO: "www.mysite.com/" and ".pdf" will never change, just the number in between will be based on whatever is entered into the original box.

Any ideas?

RonPK

9:59 pm on May 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



<form action="" onsubmit="document.location='http://www.example.com/' + this.myBox.value + '.pdf'; return false">
<input type="text" name="myBox">
</form>