I tried the tutorial written by Chris : Sending Nice HTML Email with PHP
now I got problem with redirecting to other page after form is submitted, I already tried several methods found around the internet, but wasn't work for me... :)
the header function already tried, but not in the right place... that's why i failed..
after submitted, form will be call [websitechange.js] which is external js file that contain thank you message. I just modified the js file. [Problem Solved].
now I got problem with redirecting to other page after form is submitted, I already tried several methods found around the internet, but wasn't work for me... :)
here my form: http://www.fleedy.com/bgmail
Please Guide me how to make redirection..
TQ in Advance..
Redirects in PHP are usually done using the header function: http://us2.php.net/manual/en/function.header.php
an example:
Falken is correct, the header function is what you're looking for. A lot of people have it set up like this:
if form fails {
header(fail-page)
}
else {
header(success-page)
}
I fixed the errors after referring: [http://css-tricks.com/forums/viewtopic.php?f=6&p=14544] + some other factors.
the header function already tried, but not in the right place... that's why i failed..
after submitted, form will be call [websitechange.js] which is external js file that contain thank you message.
I just modified the js file. [Problem Solved].
TQ for helping.... :)