目录深入PHP与jQuery开发源代码下载(Pro PHP and jQuery source code)

jquery下载  时间:2021-04-23  阅读:()

深入PHP与jQuery开发源代码下载Pro PHP andjQuerysource code

作者 [美] Jason Lengstorf著

人民邮电出版社

看完这本书后觉得内容挺不错的书中的代码基本上都能实现为方便广大同仁更好的学习和参考能以我个人的能力给大家做点贡献我也觉得非常荣幸欢迎大家踊跃下载本想免费供大家下载的可是为了同时也能让我下载更多的学习资料所以还是决定跟大家要点财富值吧嘿嘿

下面是这个项目的目录结构

下面是运行效果图

首先是app目录下的admin.php文件,代码如下<?php

/*

* Created on 2012-4-24 by xiongxuebing

*/include_once ' . ./system/core/init.inc.php' ;if ( !isset($_SESSION[ 'user' ] ) )

{header("Location: ./") ;exit;

}

/*

* Output the header

*/

$page_title = "Add/Edit Event";

$css_files = array("style.css", "admin.css") ;includ' ;

/*

* Load the calendar

*/

$cal = new Calendar($dbo) ;

?>

<div id="content">

<?php echo @$cal->displayForm( ) ; ?>

</div><!-- end #content -->

<?php

/*

* Output the footer

*/includ' ;

?>

下面是confirmdelete.php文件

<?php

/*

* Created on 2012-4-24 by xiongxuebing

*/include_once ' . ./system/core/init.inc.php' ;

/*

* Make sure the event ID was passed

*/if ( isset($_POST[ 'event_id' ] ) && isset($_SESSION[ 'user' ] ) ){

/*

* Collect the event ID from the URL string

*/

$id = (int) $_POST[ 'event_id' ] ;

}else

{

/*

* Send the user to the main page if no ID is supplied

*/header("Location: ./") ;exit;

}

$cal = new Calendar($dbo) ;

$markup = $cal->confirmDelete($id) ;

/*

* Output the header

*/

$page_title = "View Event";

$css_files = array("style.css", "admin.css") ;includ' ;

?>

<div id="content">

<?php echo $markup; ?>

</div><!-- end #content -->

<?php

/*

* Output the footer

*/include_once 'assets/common/footer.inc.php' ;

?>

Index.php

<?php

/*

* Created on 2012-4-24 by xiongxuebing

*/

/*

* Include necessary files

*/include_once ' . ./system/core/init.inc.php' ;

/*

* Load the calendar for January

*/

$cal = new Calendar($dbo, "2012-04-01 12:00:00") ;

$page_title = "Events Calendar";

$css_files = array( 'style.css' , 'admin.css' , 'ajax.css' ) ;includ' ;

?>

<div id="content">

<?phpecho $cal->buildCalendar( ) ;

?>

</div><!-- end #content -->

<p>

<?phpecho isset($_SESSION[ 'user' ] ) ? "欢迎您 " .$_SESSION[ 'user' ] [ 'name' ] . " ! " :

"还未登录 ";

?>

</p>

<?php

/*

* Include the footer

*/includ' ;

?>

Login.php

<?php

/*

* Created on 2012-4-25 by xiongxuebing

*/

/*

* Include necessary files

*/include_once ' . ./system/core/init.inc.php' ;

/*

* Output the header

*/

$page_title = "Please Log In";

$css_files = array("style.css", "admin.css") ;include_once 'assets/common/header.inc.php' ;

?>

<div id="content">

<form action="assets/inc/process.inc.php" method="post">

<fieldset>

<legend>Please Log In</legend>

<label for="uname">Username</label>

<input type="text" name="uname" id="uname" value="" /><label for="pword">Password</label>

<input type="password" name="pword" id="pword" value="" /><input type="hidden" name="token" value="<?php echo

$_SESSION[ 'token' ] ; ?>" />

<input type="hidden" name="action" value="user_login" /><input type="submit" name="login_submit" value="Log In" /> or<a href=" ./">cancel</a>

</fieldset>

</form>

</div><!-- end #content -->

<?php

/*

* Output the footer

*/include_once 'assets/common/footer.inc.php' ;

?>

View.php

<?php

/*

* Created on 2012-4-24 by xiongxuebing

*/if ( isset($_GET[ 'event_id' ] ) )

{

$id = preg_replace( '/[^0-9]/' , ' ' , $_GET[ 'event_id' ] ) ;if ( empty($id) )

{header("Location: ./") ;exit;

}

}else

{header("Location: ./") ;exit;

}include_once ' . ./system/core/init.inc.php' ;

$page_title = "View Event";

$css_files = array("style.css", "admin.css") ;includ' ;

$cal = new Calendar($dbo) ;

?>

<div id="content">

<?php echo $cal->displayEvent($id) ?>

<a href=" ./">&laquo; Back to the calendar</a>

</div><!-- end #content -->

<?phpinclude_once 'assets/common/footer.inc.php' ;

?>

下面是app目录assets目录下文件

首先是Commen目录

Footer.inc.php

<script type="text/javascript"src="assets/js/jquery-1.7.2. js"></script>

<script type="text/javascript" src="assets/js/valid-date. js"></script><script type="text/javascript" src="assets/js/init. js"></script></body>

</html>header.inc.php

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>

<meta http-equiv="Content-Type"content="text/html;charset=utf-8" />

<title><?php echo $page_title; ?></title>

<?php foreach ( $css_files as $css ) : ?>

<link rel="stylesheet" type="text/css" media="screen,projection"href="assets/css/<?php echo $css; ?>" />

<?php endforeach; ?>

</head>

<body>

Css目录

Admin.cssfieldset {border: 0;

}legend {font-size: 24px;

font-weight: bold;

}input[type=text] ,input[type=password] ,label {display: block;width: 70%;font-weight: bold;

}textarea {width: 99%;height: 200px;

}input[type=text] ,input[type=password] ,textarea {border: 1px solid #123;

-moz-border-radius: 6px;

-webkit-border-radius: 6px;border-radius: 6px;

-moz-box-shadow: inset 1px 2px 4px #789;

-webkit-box-shadow: inset 1px 2px 4px #789;box-shadow: inset 1px 2px 4px #789;padding: 4px;margin: 0 0 4px;font-size: 16px;font-family: georgia, serif;

}input[type=submit] {margin: 4px 0;padding: 4px;border: 1px solid #123;

-moz-border-radius: 6px;

-webkit-border-radius: 6px;border-radius: 6px;

-moz-box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;

-webkit-box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;background-color: #789;font-family: georgia, serif;text-transform: uppercase;font-weight: bold;

font-size: 14px;text-shadow: 0px 0px 1px #fff;

}

.admin-options {text-align: center;

}

.admin-options form, .admin-options p {display: inline;

}a.admin,a.link{display: inline-block;margin: 4px 0;padding: 4px;border: 1px solid #123;

-moz-border-radius: 6px;

-webkit-border-radius: 6px;border-radius: 6px;

-moz-box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;

-webkit-box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;box-shadow: inset -2px -1px 3px #345,inset 1px 1px 3px #BCF,

1px 2px 6px #789;background-color: #789;color: black;text-decoration: none;font-family: georgia, serif;text-transform: uppercase;font-weight: bold;font-size: 14px;text-shadow: 0px 0px 1px #fff;

}

Ajax.css

.modal-overlay {position: fixed;top: 0;left: 0;bottom: 0;width: 100%;

ATCLOUD-KVM架构的VPS产品$4.5,杜绝DDoS攻击

ATCLOUD.NET怎么样?ATCLOUD.NET主要提供KVM架构的VPS产品、LXC容器化产品、权威DNS智能解析、域名注册、SSL证书等海外网站建设服务。 其大部分数据中心是由OVH机房提供,其节点包括美国(俄勒冈、弗吉尼亚)、加拿大、英国、法国、德国以及新加坡。 提供超过480Gbps的DDoS高防保护,杜绝DDoS攻击骚扰,比较适合海外建站等业务。官方网站:点击访问ATCLOUD官网活...

pacificrack:2021年七夕VPS特别促销,$13.14/年,2G内存/2核/60gSSD/1T流量,支持Windows

pacificrack官方在搞2021年七夕促销,两款便宜vps给的配置都是挺不错的,依旧是接入1Gbps带宽,KVM虚拟、纯SSD raid10阵列,支持包括Linux、Windows 7、10、server2003、2008、2012、2016、2019在内多种操作系统。本次促销的VPS请特别注意限制条件,见本文末尾!官方网站:https://pacificrack.com支持PayPal、支...

Megalayer(48元)新增 美国CN2优化线路特价服务器和VPS方案

Megalayer 商家算是新晋的服务商,商家才开始的时候主要是以香港、美国独立服务器。后来有新增菲律宾机房,包括有VPS云服务器、独立服务器、站群服务器等产品。线路上有CN2优化带宽、全向带宽和国际带宽,这里有看到商家的特价方案有增加至9个,之前是四个的。在这篇文章中,我来整理看看。第一、香港服务器系列这里香港服务器会根据带宽的不同区别。我这里将香港机房的都整理到一个系列里。核心内存硬盘IP带宽...

jquery下载为你推荐
回收卡巴斯基FDCphp支持ipad谷歌sbgoogle一下"SB",虽然显示的是baidu排第一,链接的不是baidu.win7关闭135端口win7下怎么关135和8909端口micromediamacromedia的中文名googleadsense10分钟申请Google Adsense是一种怎样的体验firefoxflash插件火狐浏览器adobe flash player装了不能用联通合约机iphone5我想问下,我想入手iphone5的联通合约机, 会被坑吗ipad无法加入网络ipad无法加入网络但是手机能用
免费vps hostgator 息壤主机 私服服务器 ubuntu更新源 标准机柜尺寸 轻量 嘉洲服务器 太原联通测速平台 200g硬盘 idc是什么 流量计费 爱奇艺会员免费试用 上海联通宽带测速 申请免费空间和域名 美国独立日 摩尔庄园注册 广东主机托管 好看的空间 阿里云邮箱怎么注册 更多