index.php
来自「php模块设计。。。里面的模块很有学习价值」· PHP 代码 · 共 46 行
PHP
46 行
<?
// 外挂数据库元件 //
include("db_conn.php");
include("db_func.php");
?>
<table width="775" border="1" align="center">
<tr>
<td colspan="2" height="23">
<div align="center">电子购物商城</div>
</td>
</tr>
<tr>
<td colspan="2" align='center'>
<!-- 导入类别区域 -->
<? include("product_class.php"); ?>
</td>
</tr>
<tr>
<td colspan="2" height="23">
<!-- 导入查找区域 -->
<? include("searchbar.php"); ?>
</td>
</tr>
<tr>
<td width="175" valign="top" align="center">
<!-- 导入热门产品区域 -->
<? include("product_hot.php"); ?>
<!-- 外挂投票区域 -->
<? include("vote.php"); ?>
</td>
<td width="590" valign="top">
<!-- 导入清单区域 -->
<? include("product_list.php"); ?>
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?