Hey all! I'm working on this site here. I've got two issues with it I can't figure out...
1) In IE7, on the about page under the heading "A few of my clients", the floats are adding extra padding on the left? And am I even supposed to float that? Is there a better way of doing that?
2) I've set up a contact from on the contact page...however for the submit button, I'm using a normal link linked to my php mailer script. And the form sends a email when I press on the link, but it only sends a blank email... Here's my PHP mailer script code:
I'm not sure if this is a form issue or a PHP issue... Other than these two issues, I've got everything else under control.Code:<? $name = $_POST['name']; $email = $_POST['email']; $message = $_POST['message']; $to = 'erichuang@thinkpoint.org'; $subject = "$name sent you an email"; $message = "<b>$name wrote:</b> <i>$message</i>"; $headers = "From: $email"; mail($to, $message, $headers); header( "Location: http://thinkpoint.org/test/contact.html" ); ?>
Thanks so much you all!
Thanks,
Eric Huang





Bookmarks