0

我有一个搜索表单,当您单击记录的更多信息链接时,将为该记录打开一个新窗口以显示其他信息,我用它<a href=more_info.php?id=$rows[id]>来将 id 传递到下一页,效果很好。

在下一页上,我有一个按钮,它会弹出一个小浏览器窗口,使用这个<a href="#" onclick="window.open('signature_pad.html', 'newwindow', 'width=500, height=200'); return false;">窗口会弹出一个签名板。

我需要做的是将该记录 ID 从第二个窗口传递到弹出窗口,这样当客户在签名板上签名时,他们的签名就会被发布到正确的记录中。

所以这是第二页和弹出页面的代码:(我只发布了第二页按钮部分的代码以节省空间,因为该页面的代码相当长,只有按钮部分与这个问题有关)

<table class="auto-style16" style="width: 615px; height: 28px;">
<td style="width: 435px; height: 22px;" class="auto-style7">
**<a href="#" onclick="window.open('signature_pad.php', 'newwindow', 'width=500,   height=200');    return false;"><input type="button" value="Get Signature" /></a>**

  

和弹出窗口

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Signature Pad</title>

<!-- The Signature Pad -->
<script type ="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript"  src="signature-pad.js"></script>
</head>
<body>
<center>
<fieldset style="width: 435px">
    <br/>
    <br/>
    <div id="signaturePad" style="border: 1px solid #ccc; height: 55px; width: 400px;"></div>
    <br/><br/><br/>
    <button id="clearSig" type="button">Clear Signature</button>&nbsp;
    <button id="saveSig" type="button">Save Signature</button>
    <div id="imgData"></div>
    <br/>
    </fieldset>
</center>
<div id="debug"></div>
</body>
</html>
4

2 回答 2

1

要在 PHP 应用程序中携带变量,您可以使用 GET / POST(隐藏选项)或 PHP Session,或使用您的数据库

由于您需要在 Web 应用程序中保存变量,因此您必须包含会话(使用或不使用数据库)。

在每个页面的顶部添加: session_start();这将允许您的 Web 应用服务器跟踪每个用户。

然后将任何变量分配给会话$_SESSION['user']='Bob';

然后,当您熟悉会话时,您可以只跟踪用户 ID 并将其余部分保存在数据库中

检查这篇文章并从那里开始

于 2013-06-11T02:05:02.793 回答
1

这是您拥有的无效页面:

更多信息.php

<p>I have some text here and am just a HTML page saved as .php</p>
<table class="auto-style16" style="width: 615px; height: 28px;">
<td style="width: 435px; height: 22px;" class="auto-style7">
**<a href="#" onclick="window.open('signature_pad.php?id=$rows[id]', 'newwindow', 'width=500,   height=200');    return false;"><input type="button" value="Get Signature" /></a>**

应该是这样的:

更多信息.php

<?php
$myId = $_GET['id'];
?>
<p>I have some text here and am a HTML with PHP page saved as .php</p>
<table class="auto-style16" style="width: 615px; height: 28px;">
<td style="width: 435px; height: 22px;" class="auto-style7">
**<a href="#" onclick="window.open('signature_pad.php?id=<?php echo $myId; ?>', 'newwindow', 'width=500,   height=200');    return false;"><input type="button" value="Get Signature" /></a>**

在上面的示例中,我将 php 用于两件事,首先我收到查询字符串 id 并将其保存到我的变量$myId中,然后我将变量打印到它应该用于 window.open 的 HTML 位置。您也可以$_GET直接打印,但我不希望这样,以防我需要对变量进行进一步的处理,例如消毒等。

更多信息$_GET

于 2013-06-11T04:26:17.763 回答