0

我有这个基于 ajax 的测验,在最后一个问题被回答后会导致基于 php 的contact_details 页面。现在,用户在测验中提交的答案通过contact_details页面的url进行解析。现在,当用户填写他的详细信息并单击提交时,我也需要提交测验的 url(答案),以便我收到包含联系方式和 ajax 测验答案的电子邮件。

您能告诉我如何捕获网址以便在提交时发送吗?

4

1 回答 1

2

请查看 PHP$_SERVER变量:

$server = $_SERVER["SERVER_NAME"]; // eg. "stackoverflow.com"
$uri = $_SERVER["REQUEST_URI"]; // eg. "/questions/19133954/php-extract-url"

手册参考: http: //php.net/manual/en/reserved.variables.server.php

于 2013-10-02T09:41:29.097 回答