I will start out by saying that I have no experience with PHP at all.. sorry.
However, since I do some asp.net etc I thought I would throw myself into it..
I have come across a problem though.
I've found a mail form using jQuery.
What it's supposed to do when I hit the 'submit' button is this:
function closeForm(){
$("#messageSent").show("slow");
setTimeout('$("#messageSent").hide();$("#contactForm").slideUp("slow")', 2000);
But ever since I tied some PHP to the thing to actually make it work and send mail. It will automatically redirect me to a blank page.. the PHP document address. Instead of calling closeForm.
Alternatively I can do a header() and send it back to the front page, but that's just so far from satisfying...
I'm thinking there's just something basic about how PHP operates that I don't know about..
But let me know if you need to see more of the code behind, and I'll gladly supply it.
Thanks in advance
Maria