View Single Post
(#5 (permalink))
Old
blackdogruns's Avatar
blackdogruns blackdogruns is offline
Member
blackdogruns is an unknown quantity at this point
 
Posts: 75
Join Date: Dec 2011
Location: Salem, Oregon
Default 05-02-2012, 03:29 PM

For the most part, the form isn't even submitting. I've tried submitting the form using javascript but even that doesn't work.

For instance, usually i would use a general submit button.

[HTML]<input name="submit" type="button" value="Send e-mail" class="button">[HTML]

But then i tried js.

so....

<script type="text/javascript">
function submitform()
{
document.forms["myform"].submit();
}
</script>

And then <a href="javascript: submitform()">Submit</a>


I'm sure the php works, i've used it many times before. Even so, I implemented what you have posted. The form just won't submit.
Reply With Quote