我正在开发一个用于响应帮助请求的自动化系统,我希望能够弄清楚使用它的客户在哪里对他们得到的响应感到满意。
程序应该通过下方是/否提交按钮询问他们“您对您的回复感到满意的地方”,当用户提交时,它应该将它们转发到指定页面并调用 sendDebugMessage 函数(向我们发送电子邮件)
这是我为此编写的代码,但它只是重定向到一个空白页面:
<?php
if (isset($_POST['Yes'])) {
?>
sendDebugMessage("A user WAS happy with their response!");
<META http-equiv="refresh" content="0; URL=http://example.com">
<?php
} elseif (isset($_POST['No'])) {
sendDebugMessage("A user was NOT happy with their response!");
?>
<META http-equiv="refresh" content="0; URL=http://example.com">
<?php
} else {
?>
Where you happy with this response?
<form action="" method="post">
<input type="submit" value="Yes" name="Yes" />
<input type="submit" value="No" name="No"/>
</form>
<br />
<?php
}
?>