You are here: DEVPPL Forum Programming PHP and MySQL Forum
NOTIFICATIONS
54.093
MEMBERS
15.688
TOPICS
62.262
POSTS
  562
FLASH GAMES
7.740
TUTORIALS
 

Login

E-mail:
Password:

html/javascript response to php mailresult=OK?

0

Loading

html/javascript response to php mailresult=OK?

Postby Jerohero » Sat Sep 05, 2009 9:48 am

Hi all,
I'm new to php, but managed to get a domail.php working. My form from my html website is sent by the php file to my email address. However, the php echoes a mailresult upon successful sending, but how can I let my website respond to this mailresult?? I'd like to go to a different page, when the mailresult==OK, so something in my html file like

if($mailResult==OK){
//go to page saying, your mail has been sent!
}

OR I could change the "OK" to something more like "Thank you, your mail has been received" in the php file, because this text IS shown in my browser window. Then I would need to know how to make the layout of the window saying this fit my website layout, because now the text is just in a white plain frame..

Hope you guys can help me with either of those two options. Thanks a ton!!

Jay
Jerohero
 
Reputation: 0
Posts: 2
Joined: Sat Sep 05, 2009 9:47 am
Highscores: 0
Arcade winning challenges: 0

html/javascript response to php mailresult=OK? - Sponsored results

Sponsored results

Login to get rid of ads

 

0

Loading

Re: html/javascript response to php mailresult=OK?

Postby Djtonic » Sat Sep 12, 2009 4:30 am

jay,
what web host are you using and how did you dev your site? Also, do you mind posting your site so i can see what the form action is now?



tim.
Djtonic
 
Reputation: 0
Posts: 88
Joined: Tue Sep 08, 2009 1:38 am
Highscores: 0
Arcade winning challenges: 0
0

Loading

Re: html/javascript response to php mailresult=OK?

Postby Dflynn » Tue Dec 29, 2009 6:24 am

Hey Jay

Inside your IF statement add:
Code: Select all
print "<script>";
print " self.location='sent.php';";
print "</script>";


sent.php can be any file that you want to redirect to.

Cheers,
Dflynn
 
Reputation: 0
Posts: 860
Joined: Wed Oct 03, 2007 10:06 pm
Location: Guelph, Canada
Highscores: 0
Arcade winning challenges: 0
^ Back to Top