Hello!
My question is:
I want my visitors to be able to send the submitted form to diffrent areas of a company (represented by different emails) and to select that via a drop down menu?
As a bonus I would also like to send the mail to a default email address everytime, as a blind copy. I know how to do this part, but I wonder if the ...
What would be the best way to intercept multiple fields via PHP? Currently I have a login.php file which is pretty simple:
<form method="POST" action="auth.php">
Code:<br />
<input type="text" name="code" />
<input type="submit" id="submit" value="Submit" />
<br />
Pass:<br />
<input type="text" name="pass" />
<input type...
I have a drop down form that submits itself on change without even relying on jquery:
<script type="text/javascript">
$("#sortForm").change(function(){
this.submit();
});
</script>
But on a certain page (not everywhere) I need it to also load an external page on success, like this:
$('#tread').load('external_page.php #tr...