从列表中选择/查看一行
我很安静的PHP和SQL的基本用户,并希望做一个购物车系统,我需要你的帮助这个脚本。
结果是从表中显示的所有列表都显示在页面上,我希望有一个弹出页面,如果您点击某个产品,它将从弹出窗口中显示
如果您注意到我添加了一个锚标签,因为这是导致弹出页面的链接,弹出信息仍然在一个页面下:
`
<table width="800px" border="0" cellpadding="0" cellspacing="7">
<? $result=mysql_query("select * from argentina");
while($row=mysql_fetch_array($result)){ ?>
<tr>
<td align="center" valign="top"><img src="../user/<?=$row["picture"]?>" height="130" /></td>
<td align="right" valign="top" bgcolor="#E0E0E0">
<table width="100%" border="0" cellspacing="0" cellpadding="15">
<tr>
<td width="78%" valign="top"><a class="inline" href="#inline_content"><strong><?=$row["name"]?></strong></a><br />
Variety: <?=$row["variety"]?> <br />
Apellation: <?=$row["apellation"]?> <br />
<td width="22%" valign="top"><?=$row["content"]?><br /><br /><br />
<a href="../../contactus.php"> <input type="button" class="button-order" value="Order Now" href="contactus.php" /></a>
//windpoppup
<div style="display:none">
<div id="inline_content" style="padding:10px;background:#fff;">
<p>//Please provide code here
</div>
</p>
</div></div><p></td> </tr><br> </table><br> </td></tr><br> <tr><td colspan="0"></td><? } ?><br> </table></p> </pre>
`
谢谢。
我建议你看看已经写得很好的Codeigniter的Cart Class。 没有太多的需要不断重新发明轮子,但你可以通过阅读他们的核心,如果你愿意的话:)
购物车类(显然,你可以用它做购物车,如果你做一些研究,可以购买很多教程
链接地址: http://www.djcxy.com/p/29823.html