如何扩展从 MySQL 导入的类别列表

编程入门 行业动态 更新时间:2024-10-15 08:21:36
本文介绍了如何扩展从 MySQL 导入的类别列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我从 phpMyAdmin 的两个不同表中导入了一组不同的值,一个来自 Category 表(其中 cat_id 是 PK),另一个来自 Item 表;其中(cat_id 是 FK).

I have imported a set of different values from two different tables in phpMyAdmin, one from Category table (where cat_id is a PK) and another from Item table; where (cat_id is a FK).

<?php require ('config.php'); $que = "SELECT * FROM category"; $run = mysql_query($que); $j = 0; while($row = mysql_fetch_array($run)) { $cat_idd[$j] = $row['cat_id']; $cat_namee[$j] = $row['cat_name']; $j++; } for($i = 0; $i < count($cat_idd); $i++) { $que2 = "SELECT * FROM item WHERE cat_id = '$cat_idd[$i]' "; $result = mysql_query($que2); $run = mysql_num_rows($result); echo "<a href=''>".$cat_namee[$i]."(".$run.")</a><br>"; } ?>

这是我目前所拥有的:

现在我该如何扩展它?或者例如,如何在同一页面或下一页显示存储在名为 Clothing 的类别中的两个项目?由于此代码仅帮助我查看存储在数据库中的项目数,

Now how do I expand it? or for example, how do I show the two items that are stored in the category named Clothing on the same page or next? Since this code only helps me to view the number of items stored inside the database,

这是我的表格:

<form name = "view" method = "POST" action ="cart.php"> <table align = 'center' width = '100%' border = '4'> <tr bgcolor = 'yellow'> <td colspan = '20' align = 'center'><h2> Viewing all the Products </td> </tr> <tr align = 'center'> <th>Item ID</th> <th>Name</th> <th>Price</th> <th>Select</th> </tr> <tr class = "odd"> <?php require ('config.php'); $que = "SELECT * FROM category"; $run = mysql_query($que); $j = 0; while($row = mysql_fetch_array($run)) { $cat_idd[$j] = $row['cat_id']; $cat_namee[$j] = $row['cat_name']; $j++; }

我想过使用数组函数将值存储在一个类别中,即 Clothing(2) =>2.

I thought of using an array function to store the value inside a category i.e Clothing(2) => 2.

function array_insert(&$array, $position, $insert) { if (is_int($position)) { array_splice($array, $position, 0, $insert); } else { $pos = array_search($position, array_keys($array)); $array = array_merge( array_slice($array, 0, $pos), $insert, array_slice($array, $pos) ); } } $arr = array(); $arr[] = 2; for($i = 0; $i < count($cat_idd); $i++) { $que2 = "SELECT * FROM item WHERE cat_id = '$cat_idd[$i]'"; $result = mysql_query($que2); $run = mysql_num_rows($result); echo "<a href=''>".$cat_namee[$i]."(".$run.")</a><br>"; array_insert($arr, 0, "$run"); // echo $arr[0]; } $que2 = "SELECT * FROM item WHERE cat_id = '1'"; //instead of using '1' i wish to use the one user clicks on! $res2 = mysql_query($que2); while($row = mysql_fetch_array($res2)) { $i_id = $row['item_id']; $i_namee = $row['item_name']; $i_price = $row['item_price']; ?> <td><?php echo $i_id; ?></td> <td><?php echo $i_namee; ?></td> <td><?php echo $i_price; ?></td> <td><input type="checkbox" name="addcart" value="<?php echo $item; ?>" onClick="return KeepCount()" />Tick</td> </tr> <?php } ?> <br><br> </table> <input type = "hidden" name = "check"> <button type= "submit" onclick = "location.href = 'cart.php';" id = "cart" style="float:right; margin-top: 30px; margin-right: 10px;">Add to Cart</button>

上面的图片是我想要的结果,这个只适用于 Clothing(2).我希望它随着用户点击其他东西而改变,例如,Shoes(1).

The above image is the result what I want, this one is specific for Clothing(2) only. I want it to change as the user clicks on something else for example, Shoes(1).

推荐答案

所以在花了将近一两天之后,我终于找到了解决办法,我在这里发布了答案,所以如果其他人来这里寻找它.

So after spending almost a day or two I have finally got a way out of this and I'm posting the answer here so if anyone else comes here looking for it.

<?php require ('config.php'); $que = "SELECT * FROM category"; $run = mysql_query($que); $j = 0; while($row = mysql_fetch_array($run)) { $cat_idd[$j] = $row['cat_id']; $cat_namee[$j] = $row['cat_name']; $j++; } for($i = 0; $i < count($cat_idd); $i++) { $que2 = "SELECT * FROM item WHERE cat_id = '$cat_idd[$i]' "; $result = mysql_query($que2); $run = mysql_num_rows($result); echo "<a href='c.php?id=$cat_idd[$i]'>".$cat_namee[$i]."(".$run.")</a><br><br>"; } ?> <?php require('config.php'); if(isset($_GET['id'])) { $cat_id = $_GET['id']; $que = "SELECT * FROM item WHERE cat_id = '$cat_id'"; $run = mysql_query($que); ?> <br><br> <form name = "view" method = "POST" action ="cart.php"> <table align = 'center' width = '100%' border = '4'> <tr> <td colspan = '20' align = 'center'><h2> Viewing all the Products </h2></td> </tr> <tr align = 'center'> <th>Item ID</th> <th>Name</th> <th>Price</th> <th>Select</th> </tr> <tr align = 'center' class = "odd"> <?php while($row = mysql_fetch_array($run)) { $i_id = $row['item_id']; $i_name = $row['item_name']; $i_price = $row['item_price']; ?> <td><?php echo $i_id; ?></td> <td><?php echo $i_name; ?></td> <td><?php echo $i_price; ?></td> <?php $item = $i_name ." ". $i_price; ?> <td><input type="checkbox" name="addcart[]" value="<?php echo $item; ?> />Tick</td> </tr> <?php }?><input type = "hidden" name = "check"> <button type= "submit" onclick = "location.href = 'cart.php';" id = "cart">Add to Cart</button> <?php } ?> </table>

更多推荐

如何扩展从 MySQL 导入的类别列表

本文发布于:2023-11-28 12:29:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1642401.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:类别   列表   MySQL

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!