|
Posted by Trypt on 07/24/05 05:11
Geoff Berrow wrote:
> I noticed that Message-ID: <O-mdnQMZoZHreX_fRVn-2Q@rogers.com> from
> Trypt contained the following:
>
>
>>B. A redirection to a html page. For example, when the user completes
>>the form, I'd like them to be taken to a success.html page if
>>successful, or error.html if not.
>
>
> Make sure that this is the only thing on this page. Then do:
>
> <?
> $Name=$_POST['Name'];
> $Email=$_POST['Email'];
> $Comments=$_POST['Message'];
> $to="contact@webhost.com";
> $message="$Name just filled in your contact form. Message
> was:\n$Message\n\nTheir E-Mail address was: $Email";
> if(mail($to,"Comments From Your Site",$message,"From: $Email\n")) {
> header("Location: success.html");
> } else {
> header("Location: error.html");
> }
> ?>
>
> (assuming these pages are in the same directory. To be safe, use the
> full URL)
>
Wow, I can't believe it was that easy!! Thanx a lot, it works great!
How about one more piece of help from you? I am working on a site and
using Dreamweaver. However, no matter what I do its not accessing my
css sheet (style). I have no idea whats going on. I create a new style
sheet, save the style file, everytihng is ok within dreamweaver, even
when I preview. But when I upload everything onto the server, the html
pages are not reading the css at all!
--
Regards from Trypt!
trypt2000@(remove)yahoo.com
Navigation:
[Reply to this message]
|