|

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.
|