列出 osCommerce 中类别的随机产品

发布于 2024-07-11 18:24:59 字数 400 浏览 11 评论 0原文

我被要求为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪冰清 2024-07-18 18:24:59

解决了。 我使用了 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().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文