`
cakin24
  • 浏览: 1384091 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

PHP用switch语句设计网站主页

    博客分类:
  • PHP
阅读更多

一 PHP脚本

index.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>switch语句的应用</title>
<style type="text/css">
<!--
body {
	background-color: #F1EFEB;
	margin-left: 00px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.STYLE4 {
	color: #154049;
	font-size: 13px;
}
a:link {
	text-decoration: none;
	color: #0A323C;
}
a:visited {
	text-decoration: none;
	color: #006600;
}
a:hover {
	text-decoration: none;
	color: #000033;
}
a:active {
	text-decoration: none;
	color: #003366;
}
-->
</style>
</head>
<body><center>
<table width="850" height="80" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="333" height="50">&nbsp;</td>
    <td width="90">&nbsp;</td>
    <td width="71">&nbsp;</td>
    <td width="74">&nbsp;</td>
    <td width="73" align="right">&nbsp;</td>
    <td width="75" class="STYLE4">返回首页</td>
    <td width="83" class="STYLE4">加入收藏</td>
    <td width="51">&nbsp;</td>
  </tr>
  <tr>
    <td height="30">&nbsp;</td>
    <td align="center">&nbsp;</td>
    <td align="center"><span class="STYLE4"><a href="index.php?lmbs=最新商品">&nbsp;最新商品</a></span></td>
    <td align="center"><span class="STYLE4"><a href="index.php?lmbs=热门商品">&nbsp;热门商品</a></span></td>
    <td align="center"><span class="STYLE4"><a href="index.php?lmbs=<?php echo urlencode("推荐商品");?>">推荐商品</a></span></td>
    <td align="center"><span class="STYLE4"><a href="index.php?lmbs=<?php echo urlencode("特殊商品");?>">特殊商品</a></span></td>
    <td align="center"><span class="STYLE4"></span></td>
    <td>&nbsp;</td>
  </tr>
</table>
<table width="850" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="196" height="520" align="center" valign="top"><table width="180" height="523" border="1" cellpadding="1" cellspacing="1" bordercolor="#FFFFFF" bgcolor="#F1F1F1">
      <tr>
        <td height="25" align="center" bgcolor="#FFFFFF"><span class="STYLE4">&nbsp;&nbsp;<a href="index.php?lmbs=最新商品">&nbsp;最新商品</a></span></td>
      </tr>
      <tr>
        <td height="25" align="center" bgcolor="#FFFFFF"><span class="STYLE4">&nbsp;&nbsp;<a href="index.php?lmbs=热门商品">&nbsp;热门商品</a></span></td>
      </tr>
      <tr>
        <td height="25" align="center" bgcolor="#FFFFFF"><span class="STYLE4">&nbsp;&nbsp;&nbsp;<a href="index.php?lmbs=<?php echo urlencode("推荐商品");?>">推荐商品</a></span></td>
      </tr>
      <tr>
        <td height="25" align="center" bgcolor="#FFFFFF"><span class="STYLE4">&nbsp;&nbsp;&nbsp;<a href="index.php?lmbs=<?php echo urlencode("特殊商品");?>">特殊商品</a></span></td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
      <tr>
        <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
      </tr>
    </table></td>
    <td width="600" align="center" valign="top"><table width="595" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="center" bgcolor="#FFFFFF">
<?php 
switch($_GET[lmbs]){
case "最新商品":
        include "index1.php";
    break;
case "热门商品":
        include "index2.php";
    break;
case "推荐商品":
        include "index3.php";
    break;
case "特殊商品":
        include "index4.php";
    break;
case "":
        include "index4.php";
    break;
}
?></td>
      </tr>
    </table></td>
    <td width="54">&nbsp;</td>
  </tr>
</table>
</center>
</body>
</html>
 
index1.php
  1. <html>
  2. <head>
  3. <metahttp-equiv="Content-Type"content="text/html; charset=gb2312">
  4. <title>无标题文档</title>
  5. </head>
  6. <body>
  7. <imgsrc="images/bg6.jpg"width="508"height="543">
  8. </body>
  9. </html>
index2.php
  1. <html>
  2. <head>
  3. <metahttp-equiv="Content-Type"content="text/html; charset=gb2312">
  4. <title>无标题文档</title>
  5. </head>
  6. <body>
  7. <ahref="index.php?lmbs=新品上市"></a>
  8. <imgsrc="images/bg7.jpg"width="547"height="548">
  9. </body>
  10. </html>
index3.php
  1. <html>
  2. <head>
  3. <metahttp-equiv="Content-Type"content="text/html; charset=gb2312">
  4. <title>无标题文档</title>
  5. </head>
  6. <body>
  7. <a href="index.php?lmbs=<?php echo urlencode("特价区");?>"></a>
  8. <imgsrc="images/bg8.jpg"width="534"height="410">
  9. </body>
  10. </html>
index4.php
  1. <html>
  2. <head>
  3. <metahttp-equiv="Content-Type"content="text/html; charset=gb2312">
  4. <title>无标题文档</title>
  5. </head>
  6. <body>
  7. <imgsrc="images/bg7.JPG"width="538"height="520">
  8. </body>
  9. </html>
二 运行结果

 
三 功能说明
应用switch语句设计网站主页的布局,将网站头、尾文件设置为固定不变的板块、导航条也作为固定板块;而在主显示区中,应用switch语句根据超链接中传递的值不同,显示不同的内容。
  • 大小: 315.1 KB
1
0
分享到:
评论

相关推荐

    PHP中的switch语句的用法实例详解

    PHP中的switch语句是一种多分支结构,它根据不同的条件来执行不同的代码块。其基本用法类似于其他...通过合适的使用switch语句,开发者可以处理复杂的情况,并在需要时通过继续向下执行case分支来实现更加复杂的逻辑。

    PHP Switch 语句之学习笔记

    Switch 语句的进阶用法包括使用多个值匹配同一个代码块,这可以通过结合使用数组和 in_array() 函数实现。例如: ```php $choices = array(1, 3, 5); $value = 3; switch ($value) { case in_array($value, $...

    PHP条件控制语句:if和switchi

    在PHP编程语言中,条件控制语句是程序逻辑的核心部分,...而在"switch分支语句.php"文件中,将展示`switch`语句在处理多分支情况时的用法。通过研究这两个文件,你可以更深入地理解这两种条件控制语句在PHP中的应用。

    PHP 条件判断语句

    本篇文章将深入探讨PHP中的条件判断语句,包括`if`、`else`、`elseif`、`switch`等,并通过实例演示其用法。 ### 1. `if`语句 `if`语句是最基本的条件判断,它检查一个表达式,如果表达式的值为真(非零或非`NULL`...

    php中switch语句用法详解

    PHP中的switch语句是编程中常用的一种控制...以上是对switch语句在PHP中使用的详细解释,以及其在不同类型匹配、使用范围等场景下的应用。通过这些知识点,可以更好地掌握PHP的switch语句,并在实际编程中有效运用。

    PHP的switch判断语句的“高级”用法详解

    在本文的示例中,展示了如何用switch语句来处理字符串,以及如何处理一个数值范围。通过这些示例,我们可以看到switch不仅限于整数值,还可以处理字符串和更复杂的逻辑。 另一个重要的话题是switch语句的default...

    PHP分支结构语句的教学案例设计.pdf

    PHP分支结构语句的教学案例设计 PHP 分支结构语句是流程控制语句中应用比较广泛的语句,主要有单分支结构、双分支结构、多分支结构三种形式。在教学过程中,巧妙地设计一些与学生实际情况相关的小案例,可以把知识...

    php switch语句多个值匹配同一代码块应用示例

    PHP中的switch语句是一种用于根据不同的情况执行不同代码块的控制结构。switch语句在许多编程语言中都有应用,它与if-else语句有着相似的功能,但在某些情况下更为简洁和直观。 当switch语句的控制表达式与任何一个...

    (第四讲) PHP条件语句的介绍与应用

    在实际开发中,`if`和`switch`语句常常结合使用,以处理复杂的逻辑。通过熟练掌握这两种条件语句,开发者能够编写出更富有逻辑性和可读性的PHP代码。学习并运用好这些条件控制结构,有助于提高程序的效率和维护性,...

    php switch语句多个值匹配同一代码块的实现

    在标题和描述中提到的"php switch语句多个值匹配同一代码块的实现",指的是在`switch`结构中,通过连续的`case`关键字,可以使得多个不同的值都执行同一段代码。例如: ```php switch($i) { case 1: case 2: ...

    PHP流程控制语句

    - **switch语句**:提供了一种方式来执行多个条件分支。它比较当前的变量与case语句中的值,如果匹配则执行相应的代码块,直到遇到break语句或switch块结束。 ```php switch ($var) { case val1: // 当$var等于...

    利用switch语句进行多选一判断的实例代码

    在提供的实例中,我们看到一个PHP的网页应用,该应用使用了`switch`语句来处理用户通过单选按钮(radio button)选择的颜色。HTML部分创建了三个单选按钮,分别代表红色、蓝色和绿色,每个按钮都有一个与之关联的值...

    PHP 基础实例教程(PHP网页实例版)

    PHP switch语句 PHP while循环 PHP for和foreach循环 PHP do...while循环 PHP break/continue/exit PHP 数组 PHP 数字索引数组 PHP 非数字索引数组 PHP 多维数组 PHP 数组排序 PHP 多维数组排序 PHP 随机数组排序 ...

    《PHP-Web应用开发案例教程》第章-PHP流程控制语句.pptx

    条件控制语句是指根据给定的条件来控制程序流程的语句,常用的条件语句有if语句和switch语句。 if语句是最常用的条件控制语句,主要包括以下几种形式: 1. 单一条件分支if语句 if语句的基本表达式如下所示:if...

Global site tag (gtag.js) - Google Analytics