我很安静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>
`
感谢。
答案 0 :(得分:0)
我建议你看看Codeigniter的Cart Class,它已经写好了。没有太多需要继续重新发明轮子,但如果您愿意,可以通过阅读它们的核心来实现:)