View Full Version : Form Button Link positioning


ib2cre8iv
12-05-2005, 07:43 PM
I have a form button link right after a text box, but for some reason it keeps appearing under the text box instead of next to it like i want. Can anybody give me some advice?

Here's the basic script where I'm encountering the problem:

<p align=center> Name:

<input type=text name="Name" size=20>

<form method="get" action="http://www.angelfire.com/planet/oblivion/complete.html"><input type="submit" value="Send"></form>


and here's the webpage so you can see what it looks like: http://www.angelfire.com/planet/oblivion/complete.html

and here's a webpage where it shows what i want it to look like (at the bottom. Just ignore whatever the website says - its for a movie): http://www.angelfire.com/planet/oblivion

harmor
12-05-2005, 07:51 PM
The opening form tag is supposed to go on top

<form method="get" action="http://www.angelfire.com/planet/oblivion/complete.html">
<p align=center> Name:
<input type=text name="Name" size=20>
<input type="submit" value="Send"></p>
</form>

You can't do anything though because you'd need a server side scripting language such as PHP to get the user's input, not HTML.

ib2cre8iv
12-05-2005, 07:53 PM
Thanks. That looks a lot better. I don't care if I am able to do anything with the input information, because i just need it to look right for the movie. Thanks for the help