实例介绍
PHP+MySQL网站开发应用从入门到精通源码
【实例截图】
【核心代码】
9235822b-0646-4fb1-a066-1e265c9edc62
└── PHP+MySQL网站开发应用从入门到精通
└── 源文件
├── ch1
│ ├── 1-1
│ │ └── helloworld.html
│ └── 1-2
│ └── pp.php
├── ch10
│ ├── admin.php
│ ├── choice_template.php
│ ├── Class_support.php
│ ├── class_vote.php
│ ├── config.php
│ ├── createdb.php
│ ├── functions.php
│ ├── pollresult.php
│ ├── result_template.php
│ └── show.php
├── ch11
│ └── chatroom
│ ├── AdminMessage.php
│ ├── AdminOnlineUser.php
│ ├── AdminRegUser.php
│ ├── content.php
│ ├── dbconnect.php
│ ├── DeleteMes.php
│ ├── DeleteUser.php
│ ├── frame.php
│ ├── kick.php
│ ├── lbottom.php
│ ├── loginOk.php
│ ├── login.php
│ ├── logout.php
│ ├── members.php
│ ├── message.html
│ ├── message.php
│ ├── ok.html
│ ├── register.php
│ └── SQL语句
│ ├── chatroom_backup.sql
│ └── ChatRoom.sql
├── ch12
│ └── Message_board
│ ├── 1.gif
│ ├── admin_browse.php
│ ├── admin_display.php
│ ├── browse.php
│ ├── ChkAdmLogin.php
│ ├── dbconnect.php
│ ├── delete.php
│ ├── del.gif
│ ├── delList.php
│ ├── display.php
│ ├── head.php
│ ├── index.html
│ ├── input.php
│ ├── ip.gif
│ ├── login.php
│ ├── logo.gif
│ ├── logout.php
│ ├── mail.gif
│ ├── messageboard_backup.sql
│ ├── MessageBoard.sql
│ ├── modify_input.php
│ ├── modify.php
│ ├── reply.gif
│ ├── reply_input.php
│ ├── reply.php
│ ├── search_input.php
│ ├── search.php
│ └── write.php
├── ch13
│ └── storeCMS
│ ├── admin
│ │ ├── category_edit.php
│ │ ├── category.php
│ │ ├── header.inc.php
│ │ ├── order.php
│ │ ├── order_show.php
│ │ ├── product_add.php
│ │ ├── product_del.php
│ │ ├── product_edit.php
│ │ └── product.php
│ ├── checkout2.php
│ ├── checkout.php
│ ├── config.inc.php
│ ├── database.sql
│ ├── docart.php
│ ├── footer.inc.php
│ ├── header.inc.php
│ ├── img
│ │ ├── add.gif
│ │ ├── buyit.gif
│ │ ├── logo.gif
│ │ └── star.gif
│ ├── index.php
│ ├── list.php
│ ├── mycart.php
│ ├── search.php
│ ├── show.php
│ ├── upcart.php
│ └── uploads
│ ├── 2016499866_1163783560.gif
│ └── default.gif
├── ch14
│ └── bbs
│ ├── add_reply.php
│ ├── add_topic.php
│ ├── add_user.php
│ ├── config.inc.php
│ ├── create_topic.php
│ ├── create_user.php
│ ├── database.sql
│ ├── del_topic.php
│ ├── edit_profile.php
│ ├── footer.inc.php
│ ├── header.inc.php
│ ├── index.php
│ ├── lock.gif
│ ├── lock_topic.php
│ ├── logoff_user.php
│ ├── logon_form.php
│ ├── main_forum.php
│ ├── stick_topic.php
│ ├── sticky.gif
│ ├── unlock_topic.php
│ ├── unstick_topic.php
│ ├── update_profile.php
│ ├── view_profile.php
│ └── view_topic.php
├── ch15
│ └── KubeBlog
│ ├── adm
│ │ ├── cat_add.php
│ │ ├── cat_delete.php
│ │ ├── cat_edit.php
│ │ ├── cat_view.php
│ │ ├── class.menu.php
│ │ ├── comment_delete.php
│ │ ├── comment_edit.php
│ │ ├── comment_validate.php
│ │ ├── comment_view.php
│ │ ├── content_add.php
│ │ ├── content_delete.php
│ │ ├── content_edit.php
│ │ ├── content_view.php
│ │ ├── css
│ │ │ └── main.css
│ │ ├── database.php
│ │ ├── editor
│ │ │ ├── icons
│ │ │ │ ├── backcolor.gif
│ │ │ │ ├── backcolor_on.gif
│ │ │ │ ├── background_silver.jpg
│ │ │ │ ├── bold.gif
│ │ │ │ ├── bold_on.gif
│ │ │ │ ├── copy.gif
│ │ │ │ ├── copy_on.gif
│ │ │ │ ├── cut.gif
│ │ │ │ ├── cut_on.gif
│ │ │ │ ├── flickr2.gif
│ │ │ │ ├── flickr2_on.gif
│ │ │ │ ├── flickr.gif
│ │ │ │ ├── flickr_on.gif
│ │ │ │ ├── forecolor.gif
│ │ │ │ ├── forecolor_on.gif
│ │ │ │ ├── help.gif
│ │ │ │ ├── help_on.gif
│ │ │ │ ├── indent_left.gif
│ │ │ │ ├── indent_left_on.gif
│ │ │ │ ├── indent_right.gif
│ │ │ │ ├── indent_right_on.gif
│ │ │ │ ├── insert_hyperlink.gif
│ │ │ │ ├── insert_hyperlink_on.gif
│ │ │ │ ├── insert_picture.gif
│ │ │ │ ├── insert_picture_on.gif
│ │ │ │ ├── insert_table.gif
│ │ │ │ ├── insert_table_on.gif
│ │ │ │ ├── italics.gif
│ │ │ │ ├── italics_on.gif
│ │ │ │ ├── justify_center.gif
│ │ │ │ ├── justify_center_on.gif
│ │ │ │ ├── justify_left.gif
│ │ │ │ ├── justify_left_on.gif
│ │ │ │ ├── justify_right.gif
│ │ │ │ ├── justify_right_on.gif
│ │ │ │ ├── list_ordered.gif
│ │ │ │ ├── list_ordered_on.gif
│ │ │ │ ├── list_unordered.gif
│ │ │ │ ├── list_unordered_on.gif
│ │ │ │ ├── logo.gif
│ │ │ │ ├── paste.gif
│ │ │ │ ├── paste_on.gif
│ │ │ │ ├── redo.gif
│ │ │ │ ├── redo_on.gif
│ │ │ │ ├── select_font.gif
│ │ │ │ ├── select_font_on.gif
│ │ │ │ ├── select_size.gif
│ │ │ │ ├── select_size_on.gif
│ │ │ │ ├── seperator2.gif
│ │ │ │ ├── seperator.gif
│ │ │ │ ├── strikethrough.gif
│ │ │ │ ├── strikethrough_on.gif
│ │ │ │ ├── subscript.gif
│ │ │ │ ├── subscript_on.gif
│ │ │ │ ├── superscript.gif
│ │ │ │ ├── superscript_on.gif
│ │ │ │ ├── underline.gif
│ │ │ │ ├── underline_on.gif
│ │ │ │ ├── undo.gif
│ │ │ │ ├── undo_on.gif
│ │ │ │ ├── view_source.gif
│ │ │ │ ├── view_source_on.gif
│ │ │ │ ├── view_text.gif
│ │ │ │ ├── view_text_on.gif
│ │ │ │ ├── zooomr.gif
│ │ │ │ └── zooomr_on.gif
│ │ │ ├── popups
│ │ │ │ ├── about.html
│ │ │ │ ├── about_license.html
│ │ │ │ ├── create_table.html
│ │ │ │ ├── insert_hyperlink.html
│ │ │ │ ├── insert_image.html
│ │ │ │ ├── license.html
│ │ │ │ └── select_color.html
│ │ │ ├── styles
│ │ │ │ └── styles.css
│ │ │ └── wysiwyg_2.js
│ │ ├── editor_flickr.php
│ │ ├── editor_zooomr.php
│ │ ├── help.php
│ │ ├── images
│ │ │ ├── addpost_but.gif
│ │ │ ├── bg_top.gif
│ │ │ ├── button_edit.gif
│ │ │ ├── button_empty.gif
│ │ │ ├── dot.gif
│ │ │ ├── logo.gif
│ │ │ ├── logo.jpg
│ │ │ ├── nav_back.gif
│ │ │ ├── nav_back_over.gif
│ │ │ ├── nav_sep.gif
│ │ │ └── style.css
│ │ ├── index.php
│ │ ├── js
│ │ │ ├── mootools.js
│ │ │ └── mootools-trunk.js
│ │ ├── logout.php
│ │ ├── menu
│ │ │ ├── JSCookMenu.js
│ │ │ └── themes
│ │ │ └── Office
│ │ │ ├── arrowdown.gif
│ │ │ ├── arrow.gif
│ │ │ ├── blank.gif
│ │ │ ├── copy.gif
│ │ │ ├── copyshadow.gif
│ │ │ ├── cut.gif
│ │ │ ├── cutshadow.gif
│ │ │ ├── help.gif
│ │ │ ├── helpshadow.gif
│ │ │ ├── new.gif
│ │ │ ├── open.gif
│ │ │ ├── openshadow.gif
│ │ │ ├── paste.gif
│ │ │ ├── pasteshadow.gif
│ │ │ ├── save.gif
│ │ │ ├── saveshadow.gif
│ │ │ ├── spacer.gif
│ │ │ ├── theme.css
│ │ │ └── theme.js
│ │ ├── post_add_ajax.php
│ │ ├── post_add.php
│ │ ├── post_delete.php
│ │ ├── post_edit.php
│ │ ├── post_view.php
│ │ ├── template_settings.php
│ │ ├── user_edit.php
│ │ ├── users_add.php
│ │ ├── users_delete.php
│ │ ├── users_edit.php
│ │ ├── users_view.php
│ │ └── validate_comments.php
│ ├── content.php
│ ├── docs
│ │ ├── install.txt
│ │ └── upgrade.txt
│ ├── feed.php
│ ├── includes
│ │ ├── classes
│ │ │ ├── class.json.php
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.smtp.php
│ │ │ └── class.template_engine.php
│ │ ├── config.php
│ │ ├── fonts
│ │ │ └── edmunds.ttf
│ │ ├── functions
│ │ │ ├── func.admin.php
│ │ │ ├── func.editor.php
│ │ │ ├── func.global.php
│ │ │ └── func.post.php
│ │ └── lang
│ │ ├── admin
│ │ │ └── lang_chinese.php
│ │ ├── lang_chinese.php
│ │ └── lang_english.php
│ ├── index.php
│ ├── install
│ │ ├── images
│ │ │ ├── flag_cn.gif
│ │ │ └── flag_en.gif
│ │ ├── index.php
│ │ ├── lang
│ │ │ └── lang_english.php
│ │ ├── upgrade_1.0.php
│ │ └── upgrade_1.1.1.php
│ ├── login.php
│ ├── post.php
│ ├── seccode.php
│ └── templates
│ └── simple
│ ├── content_html.html
│ ├── images
│ │ ├── bottombar.gif
│ │ ├── headerbar.gif
│ │ ├── headerbk.gif
│ │ ├── navbar.gif
│ │ ├── postdate.jpg
│ │ ├── sidebar_bottom.gif
│ │ ├── sidebar_sides.gif
│ │ ├── sidebar_top.gif
│ │ ├── sides.gif
│ │ ├── sshot.gif
│ │ └── style.css
│ ├── index.html
│ ├── login.html
│ ├── overall_footer.html
│ ├── overall_header.html
│ └── post.html
├── ch2
│ ├── 2-1
│ │ └── 2-1.php
│ ├── 2-10
│ │ ├── copyright.php
│ │ ├── include.php
│ │ └── require.php
│ ├── 2-11
│ │ ├── arrayshow.php
│ │ └── show.php
│ ├── 2-2
│ │ └── 2-2.php
│ ├── 2-3
│ │ └── 2-3.php
│ ├── 2-4
│ │ └── 2-4.php
│ ├── 2-5
│ │ └── 2-5.php
│ ├── 2-6
│ │ └── 2-6.php
│ ├── 2-7
│ │ └── 2-7.php
│ ├── 2-8
│ │ └── 2-8.php
│ └── 2-9
│ └── 2-9.php
├── ch3
│ ├── 3-1
│ │ └── 3-1.php
│ ├── 3-10
│ │ └── 3-10.php
│ ├── 3-11
│ │ └── 3-11.php
│ ├── 3-12
│ │ └── 3-12.php
│ ├── 3-13
│ │ └── 3-13.php
│ ├── 3-14
│ │ └── 3-14.php
│ ├── 3-15
│ │ └── 3-15.php
│ ├── 3-16
│ │ └── book_list.php
│ ├── 3-2
│ │ └── 3-2.php
│ ├── 3-3
│ │ └── 3-3.php
│ ├── 3-4
│ │ └── 3-4.php
│ ├── 3-5
│ │ └── 3-5.php
│ ├── 3-6
│ │ └── 3-6.php
│ ├── 3-7
│ │ └── 3-7.php
│ ├── 3-8
│ │ └── 3-8.php
│ └── 3-9
│ └── 3-9.php
├── ch4
│ ├── 4-1
│ │ └── 4-1.php
│ ├── 4-2
│ │ └── 4-1.php
│ ├── 4-3
│ │ └── 4-3.php
│ ├── 4-4
│ │ ├── construct1.php
│ │ └── construct2.php
│ ├── 4-5
│ │ └── 4-5.php
│ ├── 4-6
│ │ └── 4-6.php
│ ├── 4-7
│ │ └── 4-7.php
│ └── 4-8
│ └── 4-8.php
├── ch5
│ ├── 5-1
│ │ └── 5-1.php
│ ├── 5-2
│ │ └── 5-2.php
│ ├── 5-3
│ │ └── 5-3.php
│ ├── 5-4
│ │ └── 5-4.php
│ ├── 5-5
│ │ └── 5-5.php
│ ├── 5-6
│ │ └── 5-6.php
│ ├── 5-7
│ │ └── 5-7.php
│ ├── 5-8
│ │ └── 5-8.php
│ └── 5-9
│ └── 5-9.php
├── ch6
│ ├── 6-1
│ │ └── 6-1.php
│ ├── 6-10
│ │ ├── image.php
│ │ └── showimage.php
│ ├── 6-2
│ │ └── 6-2.php
│ ├── 6-3
│ │ ├── 6-3.php
│ │ └── post.php
│ ├── 6-4
│ │ ├── showtext.php
│ │ └── text.html
│ ├── 6-5
│ │ ├── checbox.php
│ │ └── showcheckbox.php
│ ├── 6-6
│ │ ├── selectbox.php
│ │ └── showselectbox.php
│ ├── 6-7
│ │ ├── hide.php
│ │ └── showhide.php
│ ├── 6-8
│ │ ├── detail.php
│ │ └── showdetail.php
│ └── 6-9
│ ├── a.php
│ ├── b.php
│ └── button.php
├── ch7
│ └── booktable.sql
├── ch8
│ ├── 8-1
│ │ └── perate_sql.php
│ ├── 8-2
│ │ └── 8-2.php
│ └── 8-3
│ ├── employee.php
│ └── employee.sql
└── ch9
├── 9-1
│ ├── 1.php
│ └── 2.php
├── 9-2
│ ├── 1.php
│ ├── 2.php
│ └── 3.php
├── 9-3
│ ├── 1.php
│ └── 2.php
├── 9-4
│ └── 9-4.php
└── 9-5
├── 1.php
└── 2.php
114 directories, 378 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论