I have a (hopefully) simple question about HTML. I would like to use a "button" (like a submit button) to simply go to another page on my site. (instead of a link). Is there a way to do this? If so, what form "action" and "method" would I use? I know how to use a form button to submit something to a php script, but how would I use it to just go to another page?
well i would guess you could do it by setting action to the page you want to go to and probably not even bothering with the method.
Yea this method is quite easy a little javascript will go will
something like this
<input type="button" name="whatever" onclick="location='blah.htm'">
Something like that. Just read Up on some Javascript.