Click to See Complete Forum and Search --> : form button help ( easy question )


zinctek
07-25-2003, 04:23 AM
hey

wanted to know if anyone could help me out,

i have a button on my web site ( this prob a noob question )

the html for it is <input name="Buy" type="submit" id="Buy" value="Buy "> but i want to make it as a link to another page on my site what would the html be for that could someone give me the full code thanks!

DaveSW
07-25-2003, 04:53 AM
what are you using to process your form?

DaveSW
07-25-2003, 05:00 AM
BTW I've just sent you some private messages

zinctek
07-25-2003, 05:01 AM
its not really a form am just using the button as a link basiclly just make it look good or try to :)
am making it in dreamweaver the links and all that

Charles
07-25-2003, 05:07 AM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Example</title>
<form action="http://www.w3.org"">
<div>
<input type="submit" value="W3C">
</div>
</form>

Just use a form and submit it to where you want go.