目录深入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%;

Hostodo:$19.99/年KVM-1GB/12GB/4TB/拉斯维加斯

Hostodo发布了几款采用NVMe磁盘的促销套餐,从512MB内存起,最低年付14.99美元,基于KVM架构,开设在拉斯维加斯机房。这是一家成立于2014年的国外VPS主机商,主打低价VPS套餐且年付为主,基于OpenVZ和KVM架构,产品性能一般,数据中心目前在拉斯维加斯和迈阿密,支持使用PayPal或者支付宝等付款方式。下面列出几款NVMe硬盘套餐配置信息。CPU:1core内存:512MB...

2021年国内/国外便宜VPS主机/云服务器商家推荐整理

2021年各大云服务商竞争尤为激烈,因为云服务商家的竞争我们可以选择更加便宜的VPS或云服务器,这样成本更低,选择空间更大。但是,如果我们是建站用途或者是稳定项目的,不要太过于追求便宜VPS或便宜云服务器,更需要追求稳定和服务。不同的商家有不同的特点,而且任何商家和线路不可能一直稳定,我们需要做的就是定期观察和数据定期备份。下面,请跟云服务器网(yuntue.com)小编来看一下2021年国内/国...

hostodo:美国大流量VPS,低至$3,8T流量/月-1.5G内存/1核/25gNVMe/拉斯维加斯+迈阿密

hostodo从2014年年底运作至今一直都是走低价促销侧率运作VPS,在市场上一直都是那种不温不火的品牌知名度,好在坚持了7年都还运作得好好的,站长觉得hostodo还是值得大家在买VPS的时候作为一个候选考虑项的。当前,hostodo有拉斯维加斯和迈阿密两个数据中心的VPS在促销,专门列出了2款VPS给8T流量/月,基于KVM虚拟+NVMe整列,年付送DirectAdmin授权(发ticket...

jquery下载为你推荐
程序微信5支持ipadwindows键是哪个Win键是什么?x-routerX-TRAlL是什么意思canvas2Canvas ~セピア色のモチーフ~ 这个动画片的中文翻译是什么?从哪看?google图片搜索谁能教我怎么在手机用google的图片搜索啊!!!迅雷快鸟用迅雷快鸟提示:您所在的网络暂不支持迅雷快鸟googleadsense·什么是Google AdSense?如何加入Google AdSense? 谁可以告诉我吗?google搜图google搜索的网址是什么?fastreport2.5空调滤芯pm2.5是什么意思?
wordpress主机 踢楼 美国主机推荐 windows主机 国外bt softbank官网 174.127.195.202 京东云擎 轻博 patcha 网盘申请 中国电信测网速 qq对话框 如何用qq邮箱发邮件 vip域名 银盘服务是什么 购买空间 买空间网 美国asp空间 建站论坛 更多