2015-04-07 89 views
-1

我正在提交一个表格,将记录插入到数据库中,然后将电子邮件发送到指定的地址。下面的代码不适合我。我收到错误。HTML电子邮件不起作用

if (isset($_POST['submit'])) { 

//if (
// !empty($_POST['item_cid']) && 
// !empty($_POST['item_code']) && 
// !empty($_POST['item_name']) && 
// !empty($_POST['item_price']) && 
// !empty($_POST['item_qty']) && 

// is_array($_POST['item_cid']) && 
// is_array($_POST['item_code']) && 
// is_array($_POST['item_name']) && 
// is_array($_POST['item_price']) && 
// is_array($_POST['item_qty']) && 
// count($_POST['item_cid']) === count($_POST['item_code']) 
// ) 

//{ 

foreach($_POST['item_cid'] as $key => $value) { 
//Data for Orders Table 
    $cid = mysqli_real_escape_string($connection,$value); 
    $pcode = mysqli_real_escape_string($connection,$_POST['item_code'][$key]); 
    $pname = mysqli_real_escape_string($connection,$_POST['item_name'][$key]); 
    $pprice = mysqli_real_escape_string($connection,$_POST['item_price'][$key]); 
    $pqty = mysqli_real_escape_string($connection,$_POST['item_qty'][$key]); 

//Data for Customers Table 
    $cname = mysqli_real_escape_string($connection,$_POST['item_cname'][$key]); 
    $cemail = mysqli_real_escape_string($connection,$_POST['item_cemail'][$key]); 
    $cphone = mysqli_real_escape_string($connection,$_POST['item_cphone'][$key]); 
    $caddress = mysqli_real_escape_string($connection,$_POST['item_caddress'][$key]); 
    $ctotal = mysqli_real_escape_string($connection,$_POST['item_ctotal'][$key]); 


// $sql = "INSERT INTO orders (cid, ordprod_code, ordprod_name, ordprod_price, ordprod_qty) VALUES ('$value', '$pcode', '$pname', '$pprice', '$pqty')"; 
// $sql2 = "INSERT INTO customers (cid, cname, cemail, cphone, caddress, ctotal) VALUES ('$value','$cname','$cemail','$cphone','$caddress','$ctotal')"; 
    if ($connection->query($sql) === TRUE) { 
     echo "Orders record created successfully \n"; 
    } 
//  } else { 
//  echo "Error: " . $sql . "<br>" . $connection->error; 
//  } 

    if ($connection->query($sql2) === TRUE) { 
     echo "Customers record created successfully \n"; 
    } 
// } else { 
//  echo "Error: " . $sql2 . "<br>" . $connection->error; 
    } // close the loop 

//******************************** 
// START EMAIL FUNCTION 
//******************************** 

// PREPARE THE BODY OF THE MESSAGE 

$message = '<html><body>'; 
$message .= '<img src="http://example.com/static/images/emailhead.jpg" alt="OMREL JEWELRY" />'; 
$message .= '<h3>Customer Information:</h3>'; 
$message .= '<table rules="all" style="border-color: #666;" cellpadding="10">'; 
$message .= '<tr><td><strong>Name:</strong></td><td>'. strip_tags($_POST['item_cname']) .'</td></tr>'; 
$message .= '<tr><td><strong>Email:</strong></td><td>'. strip_tags($_POST['item_cemail']) .'</td></tr>'; 
$message .= '<tr><td><strong>Phone:</strong></td><td>'. strip_tags($_POST['item_cphone']) .'</td></tr>'; 
$message .= '<tr><td><strong>Address:</strong> </td><td>'. strip_tags($_POST['item_caddress']) .'</td></tr>'; 
$message .= '</table>'; 
$message .= '</body></html>'; 

// MAKE SURE THE "FROM" EMAIL ADDRESS DOESN'T HAVE ANY NASTY STUFF IN IT 
$pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i"; 
    if (preg_match($pattern, $_POST['item_cemail'])) { 
     $cleanedFrom = $_POST['item_cemail']; 
    } else { 
    return "The email address you entered was invalid. Please try again!"; 
    } 

// CHANGE THE BELOW VARIABLES TO YOUR NEEDS 
$to = '[email protected]'; 
$subject = 'New order Arrived CustomerID #'.$cid.' '; 
$headers = "From: " . $cleanedFrom . "\r\n"; 
$headers .= "Reply-To: ".strip_tags($_POST['item_ceamil']) ."\r\n"; 
$headers .= "MIME-Version: 1.0\r\n"; 
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; 

if (mail($to, $subject, $message, $headers)) { 
echo 'Your order has been sent. Our sales department will contact you soon...'; 
} else { 
echo 'There was a problem sending the email.'; 
} 

print_r($_POST['item_cname']); 


} // Data Inserted & Emailed Close IF Statement 

session_destroy(); 

的HTML

<p class="form-row"> 
     <label class="" for="item_cname[]">Your Name <span class="required">*</span></lable> 
     <input class="input-text" type="text" name="item_cname[]" placeholder="Your Name" /> 
     </p> 
<p class="form-row"> 
     <label class="" for="item_cemail[]">Email Address <span class="required">*</span></lable> 
     <input type="text" name="item_cemail[]" placeholder="Your Email Address"/> 
     </p> 
<p class="form-row"> 
     <label class="" for="item_cphone[]">Phone Number <span class="required">*</span></lable> 
     <input type="text" name="item_cphone[]" placeholder="Your Phone Number"/> 
     </p> 
<p class="form-row"> 
     <label class="" for="item_caddress[]">Address <span class="required">*</span></lable> 
     <textarea name="item_caddress[]" placeholder="Your Address" class="input-text" rows="2" cols="2" maxlength="140"></textarea> 
     </p> 

的错误

说明:未定义变量:SQL在/home/public_html/dev/process.php 在线路48上

警告:mysqli: :查询():在 /home/public_html/dev/process.php空查询在线路48上

说明:未定义变量:在SQL2 /home/public_html/dev/process.php 上线55

警告:mysqli的::查询():在线路中 /home/public_html/dev/process.php空查询55

警告:用strip_tags()预计参数1是字符串, /家庭给定阵列/第72行的public_html/dev/process.php

警告:strip_tags()期望p arameter 1是串,阵列中 /home/public_html/dev/process.php给出上线73

警告:用strip_tags()预计参数1是字符串, /家庭给定阵列/的public_html的/ dev/process.php上线74

警告:用strip_tags()预计参数1是串,阵列中 /home/public_html/dev/process.php给出上线75

警告:的preg_match()预计参数2为字符串,数组在 /home/public_html/dev/process.php在线81

所有那些指向strip_tags($_POST['item_*'])的错误(*表示项目的名称)。

如何解决这个问题?

+1

如果你告诉我们,这将有助于什么线/它用strip_tags()的是造成这个错误,因为你没有向我们展示了什么/你在哪里设置$ _POST数据,我们不知道它们包含什么。 – Epodax

+1

当数组的字符串不是字符串时,您正在使用'strip_tags()'这种方式将'$ _POST'添加到'strip_tags($ _ POST ['item_cname'])''中。 –

+1

你只需要检查张贴的值是否为空并且是字符串,因为错误清楚地表明strip_tags函数仅需要字符串 – Puneet

回答

1

您是否正在寻找。如果是的话,这应该为你工作:

<?php 
if (isset($_POST['submit'])) { 
foreach($_POST['item_cid'] as $key => $value) { 
//Data for Orders Table 
$cid = mysqli_real_escape_string($connection,$value); 
$pcode = mysqli_real_escape_string($connection,$_POST['item_code'][$key]); 
$pname = mysqli_real_escape_string($connection,$_POST['item_name'][$key]); 
$pprice = mysqli_real_escape_string($connection,$_POST['item_price'][$key]); 
$pqty = mysqli_real_escape_string($connection,$_POST['item_qty'][$key]); 

//Data for Customers Table 
$cname = mysqli_real_escape_string($connection,$_POST['item_cname'][$key]); 
$cemail = mysqli_real_escape_string($connection,$_POST['item_cemail'][$key]); 
$cphone = mysqli_real_escape_string($connection,$_POST['item_cphone'][$key]); 
$caddress = mysqli_real_escape_string($connection,$_POST['item_caddress'][$key]); 
$ctotal = mysqli_real_escape_string($connection,$_POST['item_ctotal'][$key]); 

if ($connection->query($sql) === TRUE) { 
echo "Orders record created successfully \n"; 
} 

if ($connection->query($sql2) === TRUE) { 
echo "Customers record created successfully \n"; 
} 
} 

$message = '<html><body>'; 
$message .= '<img src="http://example.com/static/images/emailhead.jpg" alt="OMREL JEWELRY" />'; 
$message .= '<h3>Customer Information:</h3>'; 
$message .= '<table rules="all" style="border-color: #666;" cellpadding="10">'; 
$message .= '<tr><td><strong>Name:</strong></td><td>'. $cname .'</td></tr>'; 
$message .= '<tr><td><strong>Email:</strong></td><td>'. $cemail .'</td></tr>'; 
$message .= '<tr><td><strong>Phone:</strong></td><td>'. $cphone .'</td></tr>'; 
$message .= '<tr><td><strong>Address:</strong></td><td>'. $ctotal .'</td></tr>'; 
$message .= '</table>'; 
$message .= '</body></html>'; 

$pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i"; 
if (preg_match($pattern, $cemail)) { 
$cleanedFrom = $cemail; 
} else { 
return "The email address you entered was invalid. Please try again!"; 
} 

$to = '[email protected]'; 
$subject = 'New order Arrived CustomerID #'.$cid.' '; 
$headers = "From: " . $cleanedFrom . "\r\n"; 
$headers .= "Reply-To: ".strip_tags($_POST['item_ceamil']) ."\r\n"; 
$headers .= "MIME-Version: 1.0\r\n"; 
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; 

if (mail($to, $subject, $message, $headers)) { 
echo 'Your order has been sent. Our sales department will contact you soon...'; 
} else { 
echo 'There was a problem sending the email.'; 
} 

print_r($_POST['item_cname']); 


} // Data Inserted & Emailed Close IF Statement 

session_destroy(); 
?> 
+1

这已经解决了我的问题:) – yaqoob

+1

非常感谢你... – yaqoob

+1

你非常欢迎yaqoob。很高兴我能帮助你。 :) @yaqoob –

0

可能是您的发布数据之一是数组对象。 尝试使print_r($ _ POST [xxx])检查您的POST值。 Strip Tags函数参数不应该是一个数组对象。