我想要的信息作爲郵件發送給管理員 下面是郵件的代碼和我讀這個使用file_get_contents()函數在另一個文件。PHP不是在郵件正常工作()
<!doctype html>
<?php
require_once("mysqlconnect.php");
session_start();
?>
<html>
<head>
<link rel="stylesheet" href="css/mail.css">
</head>
<body>
<table border="2">
<?php
$q="select * from profile where mobile=2147483647";
$result=mysqli_query($conn,$q);
while($row = mysqli_fetch_assoc($result))
{
foreach($row as $key=>$value)
{
if($key=="Email")
echo"<tr><th>$key</th><td><a href='mailto:$value; target='_blank'>$value</td></tr>";
else
echo"<tr><th>".str_replace('_',' ',$key)."</th> <td>$value</td></tr>";
}
}
?>
</table>
</body>
</html>
<?php
session_destroy();
?>
這個代碼在郵件的結果是PHP代碼本身..
$value) { if($key=="Email") echo"
$key $value
"; else echo"
".str_replace('_',' ',$key)." $value
"; } } ?>
好的謝謝.... :) – katty
我不能upvote我聲望低 – katty
類的mysqli的對象無法轉換爲reg.php中的字符串作爲字符串添加到另一個文件... – katty