gpt4 book ai didi

PHP 从 While 语句发送 ID 到弹出表单

转载 作者:行者123 更新时间:2023-11-29 14:54:59 24 4
gpt4 key购买 nike

我有一个从 mysql 数据库中提取的数据列表,并使用“while”语句显示;一切都很好。

当用户单击“电子邮件”链接时,在显示的项目之一旁边会出现一个弹出表单,其中包含通过电子邮件/发送项目详细信息给 friend 的想法。

现在这一切都很好,但当按下链接时,我似乎无法将正确的项目数据发送到表单。我猜这可能是因为它在 php 之外,但我不希望 while 语句中包含相同形式的多个实例。事实上,只有一种表单,我只需要在按下电子邮件链接时能够将项目 id 发送给它即可。

非常感谢任何帮助,S。

(下面删除了代码)

<?php                   
$query = mysql_query("select * from istable where categoryID = '1'");
while ($result = mysql_fetch_array($query)) {
echo '<h4>'.$result['title'].'</h4>
<p>'.substr($result['descrip'],0,408).'... <a href="'.$wwwUrl.'/p/'.$result['categoryID'].'-'.$result['title'].'.php""><strong>Read more</strong></a></p>

<div class="details">
<a href="#" rel="#sheet" class="see"><img src="'.$wwwUrl.'/images/email-icon.gif" width="23" height="23" alt="Email" /> Email</a>
</div>';
}
?>

<div id="sheet" class="rounded">
<!--{{{ pane1 -->
<div class="pane" id="pane1">

<h4>Email Property Details to a Friend</h4>
<p>You have selected to forward the details of <?php echo $_GET['title']; ?> to a friend.</p>
<p>Please fill out the following form</p>

<form class="rounded" id="email-form" method="post" action="<?php echo $pageLink; ?>">
<!-- form goes in here -->
</form>
</div>
<!--}}}-->
</div>

最佳答案

<?php $pageLink; ?>

应该是

<?php echo $pageLink ?>

<?php $_GET['title'] ?>应该是<?php echo $_GET['title']; ?>

还有其他地方。您需要将值回显到输出 (HTML) :)

关于PHP 从 While 语句发送 ID 到弹出表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4866144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com