Enjoy unlimited access to all forum features for FREE! Optional upgrade available for extra perks.
NDD Camp 2024

Need Help With A Form

ksinclair

Level 9
Legacy Exclusive Member
Joined
Nov 26, 2007
Messages
2,928
Reaction score
84
I want to have a form with one input box called Field1.

The format of the output URL is something like, http://www.MyDomain.com/a/b/c/

The input box, lets say, is a one word 'Foobar'. So what I get right now for my form output is the standard:

http://www.MyDomain.com/a/b/c/&Field1=Foobar

But what I want is,

http://www.MyDomain.com/a/b/c/Foobar.html

So I do not want the ?, nor the field name; and I need to add .html to the end. How to do this
with a basic HTML form? Surely this is not hard.
 

katherine

Country hopper
Legacy Exclusive Member
Joined
Jul 9, 2005
Messages
8,428
Reaction score
1,290
You need the POST method in your form instead of GET (default).
Also set form action to the desired URL (the one that will receive your input).
 

Biggie

DNForum Moderator
Legacy Exclusive Member
Joined
Sep 4, 2002
Messages
14,880
Reaction score
2,130
here's a form a I use, example on urlpick.com/form.html


<formaction="MAILTO:[email protected]"method="post"enctype="text/plain">

<h3>blah blah</h3>
Name:<br>
<inputtype="text"name="name"
value="first/last
"size="20">
<br>
Address:<br>
<inputtype="text"name="address"
value="address"size="20">
<br>
City/State:<br>
<inputtype="text"name="city/state"
value="City/State"size="20">
<br>
Country/Zipode:<br>
<inputtype="text"name="country/zipcode"
value="Country/zipcode"size="20">
<br>
Phone:<br>
<inputtype="text"name="phone"
value="areacode+number"size="20">
<br>
E-Mail:<br>
<inputtype="text"name="mail"
value="e-mail adddress"size="20">
<br>
Comment:<br>
<inputtype="text"name="comment"
value="yourcomment"size="20">
<br><br>
<inputtype="submit"value="Send">
<inputtype="reset"value="Reset">

</form>

just remove extra imput type as needed.

imo...
 

The Rule #1

Do not insult any other member. Be polite and do business. Thank you!

Sedo - it.com Premiums

IT.com

Premium Members

AucDom
UKBackorder
Be a Squirrel
MariaBuy

New Threads

Our Mods' Businesses

URL Shortener
UrlPick.com

*the exceptional businesses of our esteemed moderators

Top Bottom