- 浏览: 124731 次
- 性别:
- 来自: 武汉
-
文章分类
最新评论
<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];
%将结果存于total变量
$pagesize=4;
%每页显示的结果数
if ($total<=$pagesize){
$pagecount=1;
%结果数不足pagesize,则仅显示一页
}
if(($total%$pagesize)!=0){
$pagecount=intval($total/$pagesize)+1;
%若不能整除,则取商加的1的结果
}else{
$pagecount=$total/$pagesize;
%否则,直接取整
}
if(($_GET[page])==""){
$page=1;
%默认显示第一页
}else{
$page=intval($_GET[page]);
%否则,显示url中指定的页
}
$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="sale.php?page=1" title="首页"></a><a href="sale.php?page=<?php echo $page-1;?>" title="前一页"></a>
<?php
}
if($pagecount<=4){
for($i=1;$i<=$pagecount;$i++){
?>
<a href="sale.php?page=<?php echo $i;?>"><?php echo $i;?></a>
<?php
}
}else{
for($i=1;$i<=4;$i++){
?>
<a href="sale.php?page=<?php echo $i;?>"><?php echo $i;?></a>
<?php }?>
<a href="sale.php?page=<?php echo $page-1;?>" title="后一页"></a> <a href="sale.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 638<script>function StorePag ... -
advertising_ok.php
2009-05-20 21:48 526<script>function StorePag ... -
blank.php 和 bottom.php
2009-05-21 22:36 958<script>function StorePag ... -
chkadmin.php的源代码分析
2009-05-22 23:23 840<script>function StorePag ... -
del_ok.php源代码分析
2009-05-23 22:41 437<script>function StorePag ... -
find_fufei.php源码分析
2009-05-24 22:28 816<script>function StorePag ... -
find_gg.php源代码分析
2009-05-25 22:48 530<script>function StorePag ... -
find_mianfei.php源代码分析
2009-05-26 21:52 777<script>function StorePag ... -
fudel_ok.php源代码分析
2009-05-27 21:26 433<script>function StorePag ... -
gg_ok.php源代码分析
2009-05-28 21:21 464<script>function StorePag ... -
index.php源代码分析
2009-05-29 22:45 1352<script>function StorePag ... -
left.php源代码分析
2009-05-30 23:42 608<script>function StorePag ... -
login.php源代码分析
2009-05-31 22:14 1186<script>function StorePag ... -
release_content.php源代码分析
2009-06-01 22:54 871<script>function StorePag ... -
conn.php源代码分析
2009-06-02 23:42 1117<script>function StorePag ... -
car_info.php源代码分析
2009-06-03 21:55 759<script>function StorePag ... -
find_info.php源代码分析
2009-06-04 23:29 751<script>function StorePag ... -
foster_info.php源代码分析
2009-06-05 23:06 679<script>function StorePag ... -
house_info.php源代码分析
2009-06-06 23:01 644<script>function StorePag ... -
invitejob_info.php源代码分析
2009-06-07 23:49 774<script>function StorePag ...
相关推荐
- gen_goods_script.php:生成显示商品的js代码程序文件。 - get_password.php:找回管理员密码的文件。 - goods.php:商品管理程序文件。 - goods_auto.php:自动处理商品相关文件。 - goods_batch.php:商品批量...
- **源代码文件**:包括服务器端和客户端应用程序的源代码,通常以Java或PHP为主。 - **数据库脚本**:用于初始化和升级数据库结构的SQL脚本。 - **配置文件**:系统设置和连接信息,例如数据库连接参数、服务器配置...
### Odoo开源框架的源代码缺陷检测报告分析 #### 一、报告概览 本报告主要针对Odoo开源框架的源代码进行了全面的缺陷检测,旨在发现潜在的安全和质量问题,并提出改进措施。检测工作由CodePecker工具完成,具体...
手游交易平台[网站源][游戏交易网源码]下载[仿交易猫][仿5173网] 手游交易平台[网站...ASP游戏交易平台源代码带有背景的移动游戏交易程序源代码与移动终端 游戏网站源程序,手机游戏交易平台交易,交易平台网站源代码
标题 "ecshop 商城源码" 提供的信息表明这是一个基于ECSHOP电子商务系统的商城源代码,主要用于构建在线购物平台,特别是针对生鲜水果和蔬菜的销售。ECSHOP是一款用PHP编写的开源电商解决方案,它提供了丰富的功能,...
- login.html 是登录页面的源代码,用于用户验证身份进入系统。 总的来说,这个PHP POS系统是一个综合性的店铺管理工具,涵盖了进销存的核心流程,并具备用户友好的界面和数据可视化功能,以帮助店主高效地运营店铺...
对于开发人员来说,理解这些源代码可以深入学习ECShop的架构和工作原理,包括商品管理、订单处理、支付接口集成等方面的知识。同时,这也为自定义功能或二次开发提供了基础。如果你正在学习电商系统的开发或者想要...
【描述】中提到“呵呵,很开源的”,意味着该POS软件遵循开放源代码的原则,允许用户查看、修改和分发其源代码。这种开源特性对于开发者社区来说非常宝贵,因为它促进了代码共享、协作和持续改进。开发者可以研究...
开源销售点系统(Open Source Point Of Sales,简称OSPOS)是一个基于开放源代码的销售管理软件,旨在为小型零售商店和企业提供功能全面、成本低廉的销售解决方案。在OSPOS 2.0.2版本中,开发者们对前一版本进行了...
标题中的“白衣居淘宝客api源码 PHP版.rar”指的是一个使用PHP编程语言编写的淘宝客API源代码,被封装在一个RAR压缩文件中。淘宝客是一种网络推广模式,通过推广淘宝网上的商品来赚取佣金。白衣居可能是该源码的...
这个平台的设计理念是为了满足各种商业需求,同时鼓励开发者通过其开放源代码进行自定义和扩展,以适应不同企业的独特运营模式。 在核心功能方面,eccube网站提供了商品管理、订单处理、库存控制、支付集成、客户...
描述中的"基于PHP的拉卡拉POS机企业网站系统php版beat源码.zip"与标题信息相吻合,再次确认了这是一个以PHP为后端语言构建的,针对拉卡拉POS机的网站系统,并且包含的是源代码文件。"zip"文件格式通常用于压缩多个...
这表明压缩包中的内容可能包含了一整套用于构建淘宝客小偷采集站的源代码,用户可以通过这个源码快速搭建起一个能自动抓取淘宝商品信息的网站。 【标签解析】 由于标签为空,我们无法直接获取额外的关键词来扩展...
【标题】"毕业设计:基于PHP收银系统.zip"揭示了一个关于计算机专业毕业设计的项目,其中使用...通过分析和理解这个系统的源代码,学生可以深入掌握Web开发的基本流程和技术,同时也能体验到实际项目开发的挑战和乐趣。
使用laravel php artisan的销售点源代码-aplikasi kasir LARAVEL POS使用laravel php artisan的简单销售点。 适用于具有简单模块的小型商店,用于销售点交易。 功能用户帐户的编辑/更新和删除。 产品名称product,...
的源代码文件夹下的“source\function\function_core.php”,使用文本编辑器(如记事本)打开,搜索“/*!40001 SQL_CACHE*/”,并将其删除。这种解决方法基于对问题原因的判断:该指令可能是由新安装的插件或模板不...
- 示例中的 `set_K` 和 `get_K` 函数展示了如何通过引用传递来改变源对象。 3. **静态绑定(Static)** - `static` 关键字允许在类方法中使用 `self` 关键字的动态版本,即 `static`。`static::create()` 方法在...
1. **源代码**:包括前端UI界面代码和后端服务器逻辑代码,可能使用JavaScript(配合微信小程序开发工具)、PHP、Python等语言编写。 2. **配置文件**:如数据库配置、服务器设置等,用于确保小程序能正确连接到所需...
- **引用传递(&)**:通过在函数参数前加上`&`符号,可以实现值的引用传递,从而允许函数内部改变源对象的值。 ```php function set_K(&$K) {...} function &get_K() {...} ``` 2. **静态绑定(Static ...
1. **源代码文件**:如`.php`文件,包含了系统的业务逻辑和页面渲染。 2. **数据库配置文件**:可能有一个`.ini`或`.conf`文件,存储数据库连接信息。 3. **样式表**:`.css`文件用于定义界面的外观和布局。 4. **...