index.php
来自「完善的PHP/MySQL电子商务方案」· PHP 代码 · 共 66 行
PHP
66 行
<?/* index.php (c) 2000 Ying Zhang (ying@zippydesign.com) * * TERMS OF USAGE: * This file was written and developed by Ying Zhang (ying@zippydesign.com) * for educational and demonstration purposes only. You are hereby granted the * rights to use, modify, and redistribute this file as you like. The only * requirement is that you must retain this notice, without modifications, at * the top of your source code. No warranties or guarantees are expressed or * implied. DO NOT use this code in a production environment without * understanding the limitations and weaknesses pretaining to or caused by the * use of these scripts, directly or indirectly. USE AT YOUR OWN RISK! *//****************************************************************************** * MAIN *****************************************************************************/include("application.php");$DOC_TITLE = "MyMarket Home";include("$CFG->templatedir/header.php");?> <table width=100%> <tr valign="top"> <td class=normal> <h1>Welcome to MyMarket</h1> Hello and welcome to MyMarket! This is the homepage, web masters, use this area: <ul class=normal> <li>Provide a basic map of the site</li> <li>Advertise your on-sale items</li> <li>Welcome customers to your site</li> <li>Do useful things</li> </ul> <p>To begin shopping, <a href="shopping/">go to the shopping page</a> or buy the on-special items to your right. Your shopping cart is always visible on the left side of your screen. Click it to edit the contents of your basket or to check out. </td> <td width=10 nowrap></td> <td align=right> <? print_on_specials(); ?> </td> </tr> </table><?include("$CFG->templatedir/footer.php");/****************************************************************************** * FUNCTIONS *****************************************************************************/function print_on_specials() {/* print a list of categories that are on special */ global $CFG; $qid = db_query("SELECT id, name, description, price FROM products WHERE on_special = 1"); include("$CFG->templatedir/on_special.php");}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?