列出 osCommerce 中类别的随机产品
我被要求为 osCommerce 在线商店实施随机产品列表。 我可以做一些基本的 PHP,但商店使用自己的框架,我不知道如何做。 首先,我尝试在首页上创建一个随机列表:我打开index.php并找到
include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
我添加的行
include(DIR_WS_MODULES . "random_products.php");
,但我应该在其中放入什么? 我检查了comingdown_products.php,找到了一些我可以修改的SQL,也许还有一个产品循环,但里面没有这样的东西。 那么如何在不必检查表结构/包含文件的情况下做到这一点呢?
I was asked to implement a random product listing for an osCommerce on-line store. I can do some basic PHP but the store uses a framework of its own and I'm clueless how to do it. First I try to make a random list just on the front page: I open index.php and find the
include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS);
line after which I add
include(DIR_WS_MODULES . "random_products.php");
but what should I put in it? I checked the upcoming_products.php to find some SQL I could modify and maybe a loop over the products but there is no such things in it. So how do I do it without having to check table structure/include files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。 我使用了 new_products.php,它更清晰:我修改了标题并将 SQL 中的顺序更改为 RAND()。
Solved. I used new_products.php which is clearer: I modified the title and changed order in the SQL to RAND().