Mail php headers

$to = 'info@eee.com';

$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=utf-8\n";
$headers .= 'From:info@eee.com'. "\r\n" .
             'Bcc: eee@eee.gr' . "\r\n" .
             'Bcc: eee@eee.gr' . "\r\n";
$headers .= "Reply-To:eee\n"; 
$headers .= "X-Priority: 1\n";
$headers .= "X-mailer: DAUMED\n"; 
$headers .= "X-MSmail-Priority: High\n";

$subject="eee Contact form";

$message =$buffer.$send.$footer;
//echo $message;
//echo $subject;

if(@mail($to, $subject, $message, $headers)){
//echo "_mailsuc";
echo "The e-mail was sent successful";

} else {

//echo _mailsucden;
echo "There is an error please try again!";
}

Fixed positioning CSS

Fixed positioning

This post will hopefully be updated when I have done a little more (like explaining stuff and publishing combinations of three, maybe four columns), for now:

How to turn off the right-click functionality in Internet Explorer 5.0 or a later version

The following article describes how to use FrontPage 2000 to turn off the right-click functionality in Microsoft Internet Explorer versions 5.0 or a later version. These examples use JavaScript in an attempt to discourage users from saving copyrighted images to their computers. Continue reading “How to turn off the right-click functionality in Internet Explorer 5.0 or a later version”

PHP DateTime and DateTimeZone Tutorial

With each new version PHP is getting more and more object oriented. In version 5.x we get two useful classes for date and time handling. Many programmers are still using outdated methods which are available in PHP mainly for compatibility reasons, so i want to introduce you to DateTime and DateTimeZone objects. Continue reading “PHP DateTime and DateTimeZone Tutorial”