Form headers appearing bold

This is a discussion on "Form headers appearing bold" within the PHP Forum section. This forum, and the thread "Form headers appearing bold are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 20th, 2005, 10:27
New Member
Join Date: Dec 2005
Location: Canada
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Form headers appearing bold

I am not used to php or any coding but I thought it is always usefull to have a form script in php. I have looked into it and have built an initial form that submits the email to me. The only thing I am having trouble with is making the headers in the email body appear bold. Everything I have tried doesn't work. Could someone look at my script and point me in the right direction.
PHP: Select all

<?

$firstname 
$_REQUEST['firstname'] ;
$lastname $_REQUEST['lastname'] ;
$email $_REQUEST['email'] ;
mail"myemail@mydomain.com""Feedback Form Results",
"<b>From: </b>$firstname $lastname\n\n<b>Email: </b>$email",
"From: $firstname $lastname<$email>" );
?>
The email should be looking like:
From: Users Name
Email: user@usersemail.com
But instead it keeps coming through as:
<b>From: </b> Users Name
<b>Email: </b>user@usersemail.com
Any ideas anyone?
Reply With Quote

  #2 (permalink)  
Old Dec 20th, 2005, 14:26
Most Reputable Member
Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 21
Posts: 1,093
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to sypher
Re: Form headers appearing bold

You need to send html mail.
Code: Select all
     $headers = "MIME-Version: 1.0 \r\n";
     $headers .= "Content-type: text/html; ";
     $headers .= "charset=iso-8859-1\r\n";
     $headers .= "From: $email\r\n";
          
     mail($theiremail,$title,$message,$headers);
Reply With Quote
Reply

Tags
form, headers, appearing, bold

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Flash or HTML for a bold and memorable portfolio site? Inkers Website Planning 6 Jan 14th, 2008 23:40
Headers alexgeek Search Engine Optimization (SEO) 1 Oct 28th, 2007 15:24
3 choices 3 headers saltedm8 Graphics and 3D 12 Jun 24th, 2007 09:26
Cannot modify header information - headers already sent Gee Bee PHP Forum 7 Mar 12th, 2006 17:34
Cannot modify header information - headers already sent Tim356 PHP Forum 2 Aug 7th, 2005 22:58


All times are GMT. The time now is 22:17.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43