I have an email form that takes me to a 404 on post, instead of running the mail script.
I Googled and found the problem 99% of the time is that people are using fields with reserved terms, such as 'name'. That's not the case for me.
In fact, I can comment out all my inputs except for <submit>, and I still get 404. So it must be the <form action=""> parameter.
Could it be an error with using localhost? Will it work once I go live?
(this site is for a Spanish audience so my code is kinda spanglish)
<form method="post" action="<?php bloginfo('url'); ?>/submit-contacto.php">
<input type="text" id="form_nombre" name="form_nombre" />
<input type="text" id="form_correo" name="form_correo" />
<input type="text" id="form_asunto" name="form_asunto" />
<textarea id="form_mensaje" name="form_mensaje"></textarea>
<input type="submit" value="Mandar" />
</form>