2016-10-11 78 views
0

这是我的问题。我有一个发送到电子邮件地址的PHP表单。一切都很好,但是日期的格式是yyyy-mm-dd。我希望日期是,月DD,YYYY。我需要在代码中更改哪些内容才能使其工作?格式发送PHP表格的日期

<?php 
$errors = ''; 
$myemail = '[email protected]'; // <-----Put Your email address here. 
if (empty($_POST['date']) || empty($_POST['song3']) || 
    empty($_POST['song2']) || empty($_POST['song1'])) { 
    $errors .= "\n Error: all fields are required"; 
} 

$date = $_POST['date']; 
$song3 = $_POST['song3']; 
$song2 = $_POST['song2']; 
$song1 = $_POST['song1']; 

if (empty($errors)) { 
    $to = $myemail;  
    $email_subject = "Hot 3 at 3- $date"; 
    $email_body = "Here is today's Hot 3 at 3.\n\n\n" . "3. $song3 \n\n2. $song2 \n\n1. $song1"; 
    $headers = "From: KLIA-FM\n"; 
    $headers .= "Reply-To: $email_address";  
    mail($to, $email_subject, $email_body, $headers); // redirect to the 'thank you' page 
    header('Location: thank-you.html'); 
} 
?> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
    <title>Contactform handler</title> 
</head> 

<body> <!-- This page is displayed only if there is some error --> 
    <?php echo nl2br($errors); ?> 
</body> 
</html> 
+2

的可能的复制[如何转换YYYY-MM-DD以每月日期(字)天的年?(http://stackoverflow.com/questions/28228874 /如何对转换-A-日期从-YYYY-MM-DD到monthin词 - 日 - 年) – Dave

回答

0

试试这个,

$date = date_create($date); 
$date = date_format($date,"F,d,Y");