从列表中选择/查看一行

时间:2013-01-10 16:25:36

标签: php jquery mysql

我很安静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>&lt;/td&gt; &lt;/tr&gt;<br> &lt;/table&gt;<br> &lt;/td&gt;&lt;/tr&gt;<br> &lt;tr&gt;&lt;td colspan=&quot;0&quot;&gt;&lt;/td&gt;&lt;? } ?&gt;<br> &lt;/table&gt;</p> </pre>

`

感谢。

1 个答案:

答案 0 :(得分:0)

我建议你看看Codeigniter的Cart Class,它已经写好了。没有太多需要继续重新发明轮子,但如果您愿意,可以通过阅读它们的核心来实现:)

Cart Class (Obviously, you can do shopping cart with it, lots tutorial available if you do some research