深入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=" ./">« 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%;
AlphaVPS是一家保加利亚本土主机商(DA International Group Ltd),提供VPS主机及独立服务器租用等,数据中心包括美国(洛杉矶/纽约)、德国、英国和保加利亚等,公司办公地点跟他们提供的保加利亚数据中心在一栋楼内,自有硬件,提供IPv4+IPv6,支持PayPal或者信用卡等方式付款。商家提供的大硬盘VPS主机,提供128GB-2TB磁盘,最低年付15欧元起,也可以选择...
美国高防服务器提速啦专业提供美国高防服务器,美国高防服务器租用,美国抗攻击服务器,高防御美国服务器租用等。我们的海外高防服务器带给您坚不可摧的DDoS防护,保障您的业务不受攻击影响。HostEase美国高防服务器位于加州和洛杉矶数据中心,均为国内访问速度最快最稳定的美国抗攻击机房,带给您快速的访问体验。我们的高防服务器配有最高层级的DDoS防护系统,每款抗攻击服务器均拥有免费DDoS防护额度,让您...
在前面的文章中就有介绍到半月湾Half Moon Bay Cloud服务商有提供洛杉矶DC5数据中心云服务器,这个堪比我们可能熟悉的某服务商,如果我们有用过的话会发现这个服务商的价格比较贵,而且一直缺货。这里,于是半月湾服务商看到机会来了,于是有新增同机房的CN2 GIA优化线路。在之前的文章中介绍到Half Moon Bay Cloud DC5机房且进行过测评。这次的变化是从原来基础的年付49....