- 浏览: 121847 次
- 性别:
- 来自: 武汉
文章分类
最新评论
<link href="css/style.css" rel="stylesheet">
<?php
include("conn/conn.php");
?>
<table width="563" height="587" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="563" height="587" valign="top" bgcolor="#FFFFFF"><table width="563" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="563" height="27" background="Images/fufei.gif"> </td>
</tr>
<tr>
<td height="96" align="center" valign="top"><br>
<?php
$date1=date("Y-m-d");
%获取当前时间
$sgsql=mysql_query("select * from tb_leaguerinfo where type='车辆信息' and showday>='$date1' and checkstate=1 ");
%查询字符串
$sginfo=mysql_fetch_array($sgsql);
%查询结果
if($sginfo){
do{
?>
<table width="540" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="26"><span class="style1">『车辆信息』</span><span class="style8"> <?php echo $sginfo[title];?> </span><span class="style6"> <?php echo $sginfo[edate];?></span></td>
</tr>
<tr>
<td height="26"> <span class="style5"> <?php echo $sginfo[content];?></span></td>
</tr>
<tr>
<td height="26"> <span class="style8">联系人:<?php echo $sginfo[linkman];?> 联系电话:<?php echo $sginfo[tel];?></span></td>
</tr>
<tr>
<td height="3" background="Images/line1.gif"></td>
</tr>
</table>
<?php
}while($sginfo=mysql_fetch_array($sgsql));
%显式结果
}else{
?>
<table width="540" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">暂无车辆信息资源!</td>
</tr>
</table>
<?php
}
?></td>
</tr>
<tr>
<td align="center" valign="top"><table width="560" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="87" background="Images/guanggao.gif"> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="27" background="Images/mian.gif"> </td>
</tr>
<tr>
<td height="140" align="center" valign="top">
<br>
<?php
$sql=mysql_query("select count(*) as total from tb_info where type='车辆信息' and checkstate=1");
%查询
$info=mysql_fetch_array($sql);
%获取结果
$total=$info[total];
%获取结果总数
$pagesize=4;
%每页显示的个数
if ($total<=$pagesize){
$pagecount=1;
%如果结果数小于4,则页数为1
}
if(($total%$pagesize)!=0){
$pagecount=intval($total/$pagesize)+1;
%不能整除,则在商的基础上加1
}else{
$pagecount=$total/$pagesize;
%能整除,则直接取商
}
if(($_GET[page])==""){
$page=1;
%默认为第一页
}else{
$page=intval($_GET[page]);
%否则为用户选择的页数
}
$gsql=mysql_query("select * from tb_info where type='车辆信息' and checkstate=1 order by edate desc limit ".($page-1)*$pagesize.",$pagesize");
%查询信息,在每页的相应位置,放置相应的页码
$ginfo=mysql_fetch_array($gsql);
%获取结果
if($ginfo){
do{
?>
<table width="540" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="26"><span class="style1">『车辆信息』</span><span class="style8"> <?php echo $ginfo[title];?> </span><span class="style6"> <?php echo $ginfo[edate];?></span></td>
</tr>
<tr>
<td height="26"> <span class="style5"> <?php echo $ginfo[content];?></span></td>
</tr>
<tr>
<td height="26"> <span class="style8">联系人:<?php echo $ginfo[linkman];?> 联系电话:<?php echo $ginfo[tel];?></span></td>
</tr>
<tr>
<td height="3" background="Images/line1.gif"></td>
</tr>
</table>
<?php
}while($ginfo=mysql_fetch_array($gsql));
%显式结果
?>
<table width="543" height="27" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="543" height="27" colspan="3" align="right"> 共有
<?php
echo $total;
?>
条 每页显示 <?php echo $pagesize;?> 条 第 <?php echo $page;?> 页/共 <?php echo $pagecount; ?> 页
<?php
if($page>=2){
?>
<a href="car.php?page=1" title="首页"></a><a href="car.php?page=<?php echo $page-1;?>" title="前一页">
%如果页数大于等于2,则显式前一页
<?php
}
if($pagecount<=4){
for($i=1;$i<=$pagecount;$i++){
?>
<a href="car.php?page=<?php echo $i;?>"><?php echo $i;?></a>
<?php
}
}else{
for($i=1;$i<=4;$i++){
?>
<a href="car.php?page=<?php echo $i;?>"><?php echo $i;?></a>
<?php }?>
<a href="car.php?page=<?php echo $page-1;?>" title="后一页"></a> <a href="car.php?page=<?php echo $pagecount;?>" title="尾页"></a>
<?php }?></td>
</tr>
</table>
<?php
}
else{
?>
<table width="540" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">暂无车辆信息资源!</td>
</tr>
</table>
<?php
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
发表评论
-
advertising.php源代码分析
2009-05-19 22:17 627<script>function StorePag ... -
advertising_ok.php
2009-05-20 21:48 496<script>function StorePag ... -
blank.php 和 bottom.php
2009-05-21 22:36 922<script>function StorePag ... -
chkadmin.php的源代码分析
2009-05-22 23:23 829<script>function StorePag ... -
del_ok.php源代码分析
2009-05-23 22:41 419<script>function StorePag ... -
find_fufei.php源码分析
2009-05-24 22:28 804<script>function StorePag ... -
find_gg.php源代码分析
2009-05-25 22:48 518<script>function StorePag ... -
find_mianfei.php源代码分析
2009-05-26 21:52 752<script>function StorePag ... -
fudel_ok.php源代码分析
2009-05-27 21:26 421<script>function StorePag ... -
gg_ok.php源代码分析
2009-05-28 21:21 452<script>function StorePag ... -
index.php源代码分析
2009-05-29 22:45 1315<script>function StorePag ... -
left.php源代码分析
2009-05-30 23:42 591<script>function StorePag ... -
login.php源代码分析
2009-05-31 22:14 1162<script>function StorePag ... -
release_content.php源代码分析
2009-06-01 22:54 840<script>function StorePag ... -
conn.php源代码分析
2009-06-02 23:42 1087<script>function StorePag ... -
find_info.php源代码分析
2009-06-04 23:29 725<script>function StorePag ... -
foster_info.php源代码分析
2009-06-05 23:06 669<script>function StorePag ... -
house_info.php源代码分析
2009-06-06 23:01 634<script>function StorePag ... -
invitejob_info.php源代码分析
2009-06-07 23:49 767<script>function StorePag ... -
classAverage.py源代码分析
2009-06-09 01:06 539<script>function StorePag ...
相关推荐
【标题】"car_store.zip_carstore" 是一个与汽车销售相关的网站源代码压缩包,它包含了一套完整的在线购车平台的编程实现。这个网站允许用户进行汽车浏览、搜索和购买,同时提供了后台管理功能,方便对网站内容进行...
Drawing a car. car.py Drawing a yellow circle. yellow_circle.py Drawing a filled green circle. green_circle.py Drawing a dark-green circle. dark_green_circle.py Drawing squares using a function. ...
在提供的压缩包子文件“www.pudn.com.txt”中,可能包含了该PHP购物车程序的源代码、文档、数据库配置信息或其他相关资源。不过,由于我们无法直接查看内容,只能根据文件名推测其用途。通常,这样的文本文件可能会...
通过分析和学习这些源代码,开发者可以学习到如何组织和构建一个全面的网站导航系统,包括页面布局、动态效果、数据加载以及如何处理用户的导航请求。同时,这也反映了当时流行的网站内容和设计趋势。
PHP源码下载.zip表明这个压缩包包含的是用PHP编程语言编写的源代码,这可能是实现Lambda Sidecar功能的具体实现。AWS Lambda支持多种运行时环境,包括PHP,这使得开发者可以利用PHP的广泛库和工具来构建无服务器的...
在本项目中,"汽车租赁系统源代码" 是一个基于Java编程语言的教育示例,主要涉及了面向对象编程的概念和设计。这个系统可能包含了不同类型的汽车类,如Car(轿车)、Bus(公交车)和Moto(摩托车),以及用于管理...
【文件名称列表】:由于提供的列表只有一个数字“132685114196517081”,这可能是一个错误或遗漏,通常情况下,压缩包内的文件名会给出更具体的信息,如源代码文件、配置文件、数据库脚本、README文档等。...
4. `admin_login.php`:这是管理员登录页面的源代码,用于管理后台的用户认证,只有验证通过的管理员才能访问并管理网站内容。 5. `index.php`:网站的主页源代码,是用户首次访问时看到的页面,通常包含导航菜单、...
【源代码解析】 "Source-carnival:www.gusaccarnival.org的源代码-Car source code" 这个标题揭示了我们正在处理...通过分析源代码,我们可以深入了解项目的实现细节,学习其设计模式,并可能参与到这个开源社区中去。
【标题】"carz247.com:Carz源代码-Car source code"指的是一个公开的汽车销售平台的源代码,这个平台可能是用于在线展示、售卖汽车的网站或应用程序。"Carz源代码"暗示了这是一套与汽车业务相关的软件系统,其核心...
1. **源代码文件**:包括前端UI界面的HTML/CSS/JavaScript文件,后端处理逻辑的PHP/Python/Node.js等文件。 2. **配置文件**:如数据库连接配置、服务器配置等,用于设置运行环境。 3. **数据库脚本**:用于创建和...
1. **源代码**:这可能包括HTML文件(用于用户界面)、CSS文件(用于样式设计)和JavaScript文件(用于处理用户交互和后端通信)。 2. **数据文件**:存储邮政编码和地址信息的数据文件,可能是JSON、CSV或其他...
5. **开源软件**: 这意味着源代码对公众开放,任何人都可以查看、使用、修改和分发。这种模式鼓励社区参与和改进,增加了软件的透明度和可信赖性。 6. **Web应用架构**: 作为一个Web应用,此脚本可能采用了MVC...
《汽车租赁系统源代码解析与应用》 汽车租赁系统是一种基于信息技术的管理工具,它集成了汽车信息管理、租赁业务处理、数据统计分析等多个功能模块,旨在提高汽车租赁公司的运营效率和服务质量。本文将深入探讨该...
首先,`arduino_code.ino`是Arduino项目的源代码文件。Arduino编程主要使用C++语言,但其语法被简化,方便初学者理解。在`arduino_code.ino`中,你将找到处理输入、控制游戏逻辑和与Web服务器通信的代码。它可能包括...
"liuer_car"可能是项目的主要代码库或者特定模块,而"wxapp"则通常用于存放微信小程序的源代码和资源文件,包括页面布局、样式表、图片、图标等。 在开发过程中,前端部分通常由HTML、CSS和JavaScript组成,可能还...
文件结构方面,"car_park-master"可能是项目的根目录,通常包含如下文件和文件夹:源代码文件(PHP和JavaScript)、样式表(CSS)、图片资源、配置文件(如数据库连接信息)、测试数据和文档。通过阅读这些文件,你...
【标题】:“汽车门户网站系统PHP源码.rar”指的是一个基于PHP编程语言开发的汽车资讯类网站的源代码压缩包。这个源码可能是用于构建一个功能完善的汽车信息平台,包括新车发布、二手车交易、汽车评测、论坛交流等...
在"assignment#1"这个文件中,可能是包含了实现上述功能的PHP源代码,或者是该项目的一部分。要深入了解该项目的实现细节,需要查看具体的代码内容。以上就是基于题目描述所涉及的主要PHP知识点,这些知识对于构建...
Linken Foros是一款开源的论坛系统,它的核心理念是让用户能够自由地编辑、改进以及重新分发其源代码。这一特性使得开发者和爱好者们可以根据自己的需求定制和扩展论坛功能,打造个性化且符合社区特性的交流平台。 ...