0

我有一个问题,一个 php 页面运行两次,但通过代理服务器连接时它只运行两次。如果用户不通过代理连接,此代码运行良好。

如何解决此问题,使其仅运行一次,无论是否通过代理连接?

此 php 代码在 Drupal CMS 页面中运行,但独立于 Drupal。用户通过单击超链接进入该页面。

是我使用标题将用户重定向到另一个页面吗?

<?php

$userId = 0;
$userId = $_GET["userId"];

$userEmail = 0;
$userEmail = $_GET["userEmail"];

$userName = 0;
$userName = $_GET["userName"];

//connect to the database
$con = mysql_connect("HOSTNAME","USERNAME","PASSWORD");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
else
{
//echo "Connected.";
//echo "<br>";
}

mysql_select_db("formredirectdata", $con);


$userId = intval($userId);

mysql_query("INSERT INTO webforms
(userid, formisactive, formname, formtitle, shortdesc, confirmationlink) VALUES('$userId', '1', 'Form Name', 'Form Title', 'Short Description', 'Confirmation Link') ") 
or die(mysql_error());  

$newformnum = mysql_insert_id();

$recipientname = 0;
$recipientemail = 0;
$recipientname = "default" . $newformnum;
$recipientemail = $userEmail;

//send to the next script
header('Location: addtriggernewform.php?formnum2=' . $newformnum . '&recipientemail=' . $recipientemail . '&operator=(default)&inputname=(default)&triggervalue=(default)&userName=' . $userName);
?>
4

1 回答 1

0

后来我发现查询被处理两次的原因是我使用不同的用户帐户在两个不同的浏览器中登录到网站(基于 Drupal)。在其中一个浏览器中注销后,查询不再被处理两次。这一定是一个涉及 Drupal 和临时 Internet 文件的怪癖。

于 2013-12-09T22:41:47.107 回答