如果你能帮我编码,我将非常感激。我真的需要帮助。 我希望单击图像,从电子邮件发送的字段中获取数据。
所以我的HTML图像代码是这样的:
<img src="images/some.png" id="help" onClick="help();">
在HTML文件中的那个标记之前,我把AJAX放在那个:
<script type="text/javascript">
function help() {
$.get("/help.php");
return false;
}
</script>
使用我想要的功能,当用户点击图像执行我在其他文件上的PHP脚本时,它包含如下代码: help.php
<?php
{
$helpSubject = 'help';
$webMaster = '****@mail.com';
$helpField = $_POST['help'];
$problemField = $_POST['problem'];
$body = <<<EOD
<br><hr><br>
Help: $help <br>
Problem: $problem <br>
EOD;
$headers = "Reason: $help\r\n";
$headers = "Content-type: text/html\r\n";
$success = mail($webMaster, $helpSubject, $body, $headers);
$theResults = <<<EOD
Success
EOD;
echo "$theResults";
}
?>
出了点问题,我无法找到答案。有人可以帮我吗? 谢谢。