在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → CI框架学习笔记源码.rar

CI框架学习笔记源码.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:4.97M
  • 下载次数:1
  • 浏览次数:168
  • 发布时间:2021-12-12
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
这是CI框架学习笔记的源码,适合新手学习CI框架使用,以电子商城为例。
【实例截图】
【核心代码】
4744302543375376528.rar
└── cishop
├── application
│   ├── cache
│   │   └── index.html
│   ├── config
│   │   ├── autoload.php
│   │   ├── config.php
│   │   ├── constants.php
│   │   ├── database.php
│   │   ├── doctypes.php
│   │   ├── foreign_chars.php
│   │   ├── hooks.php
│   │   ├── index.html
│   │   ├── memcached.php
│   │   ├── migration.php
│   │   ├── mimes.php
│   │   ├── profiler.php
│   │   ├── routes.php
│   │   ├── smileys.php
│   │   ├── upload.php
│   │   └── user_agents.php
│   ├── controllers
│   │   ├── admin
│   │   │   ├── attribute.php
│   │   │   ├── brand.php
│   │   │   ├── category.php
│   │   │   ├── goods.php
│   │   │   ├── goodstype.php
│   │   │   ├── main.php
│   │   │   └── privilege.php
│   │   ├── cart.php
│   │   ├── goods.php
│   │   ├── home.php
│   │   ├── index.html
│   │   ├── user.php
│   │   └── Welcome.php
│   ├── core
│   │   ├── index.html
│   │   ├── MY_Controller.php
│   │   └── MY_Loader.php
│   ├── helpers
│   │   ├── index.html
│   │   └── MY_captcha_helper.php
│   ├── hooks
│   │   └── index.html
│   ├── index.html
│   ├── language
│   │   ├── chinese
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── pagination_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   ├── english
│   │   │   └── index.html
│   │   └── index.html
│   ├── libraries
│   │   ├── Cart.php
│   │   ├── index.html
│   │   └── Pagination.php
│   ├── logs
│   │   └── index.html
│   ├── models
│   │   ├── attribute_model.php
│   │   ├── brand_model.php
│   │   ├── cart_model.php
│   │   ├── category_model.php
│   │   ├── goods_model.php
│   │   ├── goodstype_model.php
│   │   ├── index.html
│   │   └── user_model.php
│   ├── third_party
│   │   ├── fckeditor
│   │   │   ├── editor
│   │   │   │   ├── css
│   │   │   │   │   ├── behaviors
│   │   │   │   │   │   ├── disablehandles.htc
│   │   │   │   │   │   └── showtableborders.htc
│   │   │   │   │   ├── fck_editorarea.css
│   │   │   │   │   ├── fck_internal.css
│   │   │   │   │   ├── fck_showtableborders_gecko.css
│   │   │   │   │   └── images
│   │   │   │   │   ├── block_address.png
│   │   │   │   │   ├── block_blockquote.png
│   │   │   │   │   ├── block_div.png
│   │   │   │   │   ├── block_h1.png
│   │   │   │   │   ├── block_h2.png
│   │   │   │   │   ├── block_h3.png
│   │   │   │   │   ├── block_h4.png
│   │   │   │   │   ├── block_h5.png
│   │   │   │   │   ├── block_h6.png
│   │   │   │   │   ├── block_p.png
│   │   │   │   │   ├── block_pre.png
│   │   │   │   │   ├── fck_anchor.gif
│   │   │   │   │   ├── fck_flashlogo.gif
│   │   │   │   │   ├── fck_hiddenfield.gif
│   │   │   │   │   ├── fck_pagebreak.gif
│   │   │   │   │   └── fck_plugin.gif
│   │   │   │   ├── dialog
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── fck_dialog_common.css
│   │   │   │   │   │   ├── fck_dialog_common.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── locked.gif
│   │   │   │   │   │   ├── reset.gif
│   │   │   │   │   │   └── unlocked.gif
│   │   │   │   │   ├── fck_about
│   │   │   │   │   │   ├── logo_fckeditor.gif
│   │   │   │   │   │   ├── logo_fredck.gif
│   │   │   │   │   │   └── sponsors
│   │   │   │   │   │   └── spellchecker_net.gif
│   │   │   │   │   ├── fck_about.html
│   │   │   │   │   ├── fck_anchor.html
│   │   │   │   │   ├── fck_button.html
│   │   │   │   │   ├── fck_checkbox.html
│   │   │   │   │   ├── fck_colorselector.html
│   │   │   │   │   ├── fck_docprops
│   │   │   │   │   │   └── fck_document_preview.html
│   │   │   │   │   ├── fck_docprops.html
│   │   │   │   │   ├── fck_flash
│   │   │   │   │   │   ├── fck_flash.js
│   │   │   │   │   │   └── fck_flash_preview.html
│   │   │   │   │   ├── fck_flash.html
│   │   │   │   │   ├── fck_form.html
│   │   │   │   │   ├── fck_hiddenfield.html
│   │   │   │   │   ├── fck_image
│   │   │   │   │   │   ├── fck_image.js
│   │   │   │   │   │   └── fck_image_preview.html
│   │   │   │   │   ├── fck_image.html
│   │   │   │   │   ├── fck_link
│   │   │   │   │   │   └── fck_link.js
│   │   │   │   │   ├── fck_link.html
│   │   │   │   │   ├── fck_listprop.html
│   │   │   │   │   ├── fck_paste.html
│   │   │   │   │   ├── fck_radiobutton.html
│   │   │   │   │   ├── fck_replace.html
│   │   │   │   │   ├── fck_select
│   │   │   │   │   │   └── fck_select.js
│   │   │   │   │   ├── fck_select.html
│   │   │   │   │   ├── fck_smiley.html
│   │   │   │   │   ├── fck_source.html
│   │   │   │   │   ├── fck_specialchar.html
│   │   │   │   │   ├── fck_spellerpages
│   │   │   │   │   │   └── spellerpages
│   │   │   │   │   │   ├── blank.html
│   │   │   │   │   │   ├── controls.html
│   │   │   │   │   │   ├── controlWindow.js
│   │   │   │   │   │   ├── server-scripts
│   │   │   │   │   │   │   ├── spellchecker.cfm
│   │   │   │   │   │   │   ├── spellchecker.php
│   │   │   │   │   │   │   └── spellchecker.pl
│   │   │   │   │   │   ├── spellchecker.html
│   │   │   │   │   │   ├── spellChecker.js
│   │   │   │   │   │   ├── spellerStyle.css
│   │   │   │   │   │   └── wordWindow.js
│   │   │   │   │   ├── fck_spellerpages.html
│   │   │   │   │   ├── fck_tablecell.html
│   │   │   │   │   ├── fck_table.html
│   │   │   │   │   ├── fck_template
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── template1.gif
│   │   │   │   │   │   ├── template2.gif
│   │   │   │   │   │   └── template3.gif
│   │   │   │   │   ├── fck_template.html
│   │   │   │   │   ├── fck_textarea.html
│   │   │   │   │   ├── fck_textfield.html
│   │   │   │   │   ├── fck_UpFileBtn
│   │   │   │   │   │   └── fck_UpFileBtn.js
│   │   │   │   │   └── fck_UpFileBtn.html
│   │   │   │   ├── dtd
│   │   │   │   │   ├── fck_dtd_test.html
│   │   │   │   │   ├── fck_xhtml10strict.js
│   │   │   │   │   └── fck_xhtml10transitional.js
│   │   │   │   ├── fckdebug.html
│   │   │   │   ├── fckdialog.html
│   │   │   │   ├── fckeditor.html
│   │   │   │   ├── fckeditor.original.html
│   │   │   │   ├── filemanager
│   │   │   │   │   ├── browser
│   │   │   │   │   │   └── default
│   │   │   │   │   │   ├── browser.css
│   │   │   │   │   │   ├── browser.html
│   │   │   │   │   │   ├── frmactualfolder.html
│   │   │   │   │   │   ├── frmcreatefolder.html
│   │   │   │   │   │   ├── frmfolders.html
│   │   │   │   │   │   ├── frm.html
│   │   │   │   │   │   ├── frmresourceslist.html
│   │   │   │   │   │   ├── frmresourcetype.html
│   │   │   │   │   │   ├── frmupload.html
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── ButtonArrow.gif
│   │   │   │   │   │   │   ├── Folder32.gif
│   │   │   │   │   │   │   ├── Folder.gif
│   │   │   │   │   │   │   ├── FolderOpened32.gif
│   │   │   │   │   │   │   ├── FolderOpened.gif
│   │   │   │   │   │   │   ├── FolderUp.gif
│   │   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   │   ├── 32
│   │   │   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── common.js
│   │   │   │   │   │   └── fckxml.js
│   │   │   │   │   └── connectors
│   │   │   │   │   └── php
│   │   │   │   │   ├── basexml.php
│   │   │   │   │   ├── commands.php
│   │   │   │   │   ├── config.php
│   │   │   │   │   ├── connector.php
│   │   │   │   │   ├── io.php
│   │   │   │   │   ├── _more.php
│   │   │   │   │   ├── phpcompat.php
│   │   │   │   │   ├── upload_more.php
│   │   │   │   │   ├── upload.php
│   │   │   │   │   └── util.php
│   │   │   │   ├── images
│   │   │   │   │   ├── anchor.gif
│   │   │   │   │   ├── arrow_ltr.gif
│   │   │   │   │   ├── arrow_rtl.gif
│   │   │   │   │   ├── smiley
│   │   │   │   │   │   └── msn
│   │   │   │   │   │   ├── angel_smile.gif
│   │   │   │   │   │   ├── angry_smile.gif
│   │   │   │   │   │   ├── broken_heart.gif
│   │   │   │   │   │   ├── cake.gif
│   │   │   │   │   │   ├── confused_smile.gif
│   │   │   │   │   │   ├── cry_smile.gif
│   │   │   │   │   │   ├── devil_smile.gif
│   │   │   │   │   │   ├── embaressed_smile.gif
│   │   │   │   │   │   ├── envelope.gif
│   │   │   │   │   │   ├── heart.gif
│   │   │   │   │   │   ├── kiss.gif
│   │   │   │   │   │   ├── lightbulb.gif
│   │   │   │   │   │   ├── omg_smile.gif
│   │   │   │   │   │   ├── regular_smile.gif
│   │   │   │   │   │   ├── sad_smile.gif
│   │   │   │   │   │   ├── shades_smile.gif
│   │   │   │   │   │   ├── teeth_smile.gif
│   │   │   │   │   │   ├── thumbs_down.gif
│   │   │   │   │   │   ├── thumbs_up.gif
│   │   │   │   │   │   ├── tounge_smile.gif
│   │   │   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   │   │   └── wink_smile.gif
│   │   │   │   │   └── spacer.gif
│   │   │   │   ├── js
│   │   │   │   │   ├── fckadobeair.js
│   │   │   │   │   ├── fckeditorcode_gecko.js
│   │   │   │   │   └── fckeditorcode_ie.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh.js
│   │   │   │   └── skins
│   │   │   │   └── default
│   │   │   │   ├── fck_dialog.css
│   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   ├── fck_editor.css
│   │   │   │   ├── fck_strip.gif
│   │   │   │   └── images
│   │   │   │   ├── dialog.sides.gif
│   │   │   │   ├── dialog.sides.png
│   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   ├── sprites.gif
│   │   │   │   ├── sprites.png
│   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   ├── toolbar.end.gif
│   │   │   │   ├── toolbar.expand.gif
│   │   │   │   ├── toolbar.separator.gif
│   │   │   │   └── toolbar.start.gif
│   │   │   ├── fckconfig.js
│   │   │   ├── fckeditor.cfc
│   │   │   ├── fckeditor.js
│   │   │   ├── fckeditor.php
│   │   │   ├── fckeditor_php4.php
│   │   │   ├── fckeditor_php5.php
│   │   │   ├── fckpackager.xml
│   │   │   ├── fckstyles.xml
│   │   │   ├── fcktemplates.xml
│   │   │   └── license.txt
│   │   └── index.html
│   └── views
│   ├── attribute_add.html
│   ├── attribute_edit.html
│   ├── attribute_list.html
│   ├── brand_add.html
│   ├── brand_edit.html
│   ├── brand_list.html
│   ├── cat_add.html
│   ├── cat_edit.html
│   ├── cat_list.html
│   ├── drag.html
│   ├── errors
│   │   ├── cli
│   │   │   ├── error_404.php
│   │   │   ├── error_db.php
│   │   │   ├── error_exception.php
│   │   │   ├── error_general.php
│   │   │   ├── error_php.php
│   │   │   └── index.html
│   │   ├── html
│   │   │   ├── error_404.php
│   │   │   ├── error_db.php
│   │   │   ├── error_exception.php
│   │   │   ├── error_general.php
│   │   │   ├── error_php.php
│   │   │   └── index.html
│   │   └── index.html
│   ├── goods_add.html
│   ├── goods_edit.html
│   ├── goods_list.html
│   ├── goods_type_add.html
│   ├── goods_type_edit.html
│   ├── goods_type_list.html
│   ├── index.html
│   ├── login.html
│   ├── main.html
│   ├── menu.html
│   ├── message.html
│   ├── top.html
│   └── welcome_message.php
├── ci_sessions
│   └── ci_sessionavjepl36ikcs2ea81gmmbtjubqi6c4kp
├── composer.json
├── contributing.md
├── data
│   └── captcha
│   ├── 1488616737.7204.jpg
│   ├── 1488616782.2919.jpg
│   ├── 1488616814.6908.jpg
│   ├── 1488616857.3812.jpg
│   ├── 1488616857.9082.jpg
│   ├── 1488616858.1542.jpg
│   ├── 1488616858.3713.jpg
│   ├── 1488616858.6933.jpg
│   ├── 1488616860.9914.jpg
│   ├── 1488617215.2037.jpg
│   ├── 1488617295.0452.jpg
│   ├── 1488617320.8827.jpg
│   └── 1488617998.8475.jpg
├── images
│   ├── ajax_loader.gif
│   ├── area_link.gif
│   ├── arrow.gif
│   ├── arrow_left.gif
│   ├── arrow_right.gif
│   ├── bg_repx.gif
│   ├── book_open.gif
│   ├── btn_close.gif
│   ├── btn_drop.gif
│   ├── btn_maximize.gif
│   ├── btn_minimize.gif
│   ├── button_bg.gif
│   ├── charts
│   │   ├── bar.swf
│   │   ├── column3d.swf
│   │   ├── column.swf
│   │   ├── line.swf
│   │   ├── MSColumn3D.swf
│   │   ├── MSLine.swf
│   │   ├── pie3d.swf
│   │   ├── pipe.swf
│   │   └── ScrollColumn2D.swf
│   ├── close.gif
│   ├── color_selecter.gif
│   ├── confirm.gif
│   ├── ecshop_logo.gif
│   ├── empty.gif
│   ├── filecheck.gif
│   ├── icon_account.gif
│   ├── icon_add.gif
│   ├── icon_copy.gif
│   ├── icon_docs.gif
│   ├── icon_drop.gif
│   ├── icon_edit.gif
│   ├── icon_js.gif
│   ├── icon_output.gif
│   ├── icon_priv.gif
│   ├── icon_search.gif
│   ├── icon_send_bonus.gif
│   ├── icon_title.gif
│   ├── icon_trash.gif
│   ├── icon_view.gif
│   ├── information.gif
│   ├── loader.gif
│   ├── login_line.gif
│   ├── login.png
│   ├── menu_arrow.gif
│   ├── menu_minus.gif
│   ├── menu_plus.gif
│   ├── no.gif
│   ├── notice.gif
│   ├── online.swf
│   ├── online.wav
│   ├── picflag.gif
│   ├── picnoflag.gif
│   ├── sort_asc.gif
│   ├── sort_desc.gif
│   ├── stepnum.gif
│   ├── th_bg.gif
│   ├── top_loader.gif
│   ├── warning.gif
│   ├── warning_small.gif
│   └── yes.gif
├── index.php
├── js
│   ├── colorselector.js
│   ├── colorselector_topic.js
│   ├── common.js
│   ├── global.js
│   ├── listtable.js
│   ├── md5.js
│   ├── selectbox.js
│   ├── selectzone.js
│   ├── tab.js
│   ├── todolist.js
│   ├── topbar.js
│   ├── transport.js
│   ├── utils.js
│   └── validator.js
├── license.txt
├── public
│   ├── fckeditor
│   │   ├── editor
│   │   │   ├── css
│   │   │   │   ├── behaviors
│   │   │   │   │   ├── disablehandles.htc
│   │   │   │   │   └── showtableborders.htc
│   │   │   │   ├── fck_editorarea.css
│   │   │   │   ├── fck_internal.css
│   │   │   │   ├── fck_showtableborders_gecko.css
│   │   │   │   └── images
│   │   │   │   ├── block_address.png
│   │   │   │   ├── block_blockquote.png
│   │   │   │   ├── block_div.png
│   │   │   │   ├── block_h1.png
│   │   │   │   ├── block_h2.png
│   │   │   │   ├── block_h3.png
│   │   │   │   ├── block_h4.png
│   │   │   │   ├── block_h5.png
│   │   │   │   ├── block_h6.png
│   │   │   │   ├── block_p.png
│   │   │   │   ├── block_pre.png
│   │   │   │   ├── fck_anchor.gif
│   │   │   │   ├── fck_flashlogo.gif
│   │   │   │   ├── fck_hiddenfield.gif
│   │   │   │   ├── fck_pagebreak.gif
│   │   │   │   └── fck_plugin.gif
│   │   │   ├── dialog
│   │   │   │   ├── common
│   │   │   │   │   ├── fck_dialog_common.css
│   │   │   │   │   ├── fck_dialog_common.js
│   │   │   │   │   └── images
│   │   │   │   │   ├── locked.gif
│   │   │   │   │   ├── reset.gif
│   │   │   │   │   └── unlocked.gif
│   │   │   │   ├── fck_about
│   │   │   │   │   ├── logo_fckeditor.gif
│   │   │   │   │   ├── logo_fredck.gif
│   │   │   │   │   └── sponsors
│   │   │   │   │   └── spellchecker_net.gif
│   │   │   │   ├── fck_about.html
│   │   │   │   ├── fck_anchor.html
│   │   │   │   ├── fck_button.html
│   │   │   │   ├── fck_checkbox.html
│   │   │   │   ├── fck_colorselector.html
│   │   │   │   ├── fck_docprops
│   │   │   │   │   └── fck_document_preview.html
│   │   │   │   ├── fck_docprops.html
│   │   │   │   ├── fck_flash
│   │   │   │   │   ├── fck_flash.js
│   │   │   │   │   └── fck_flash_preview.html
│   │   │   │   ├── fck_flash.html
│   │   │   │   ├── fck_form.html
│   │   │   │   ├── fck_hiddenfield.html
│   │   │   │   ├── fck_image
│   │   │   │   │   ├── fck_image.js
│   │   │   │   │   └── fck_image_preview.html
│   │   │   │   ├── fck_image.html
│   │   │   │   ├── fck_link
│   │   │   │   │   └── fck_link.js
│   │   │   │   ├── fck_link.html
│   │   │   │   ├── fck_listprop.html
│   │   │   │   ├── fck_paste.html
│   │   │   │   ├── fck_radiobutton.html
│   │   │   │   ├── fck_replace.html
│   │   │   │   ├── fck_select
│   │   │   │   │   └── fck_select.js
│   │   │   │   ├── fck_select.html
│   │   │   │   ├── fck_smiley.html
│   │   │   │   ├── fck_source.html
│   │   │   │   ├── fck_specialchar.html
│   │   │   │   ├── fck_spellerpages
│   │   │   │   │   └── spellerpages
│   │   │   │   │   ├── blank.html
│   │   │   │   │   ├── controls.html
│   │   │   │   │   ├── controlWindow.js
│   │   │   │   │   ├── server-scripts
│   │   │   │   │   │   ├── spellchecker.cfm
│   │   │   │   │   │   ├── spellchecker.php
│   │   │   │   │   │   └── spellchecker.pl
│   │   │   │   │   ├── spellchecker.html
│   │   │   │   │   ├── spellChecker.js
│   │   │   │   │   ├── spellerStyle.css
│   │   │   │   │   └── wordWindow.js
│   │   │   │   ├── fck_spellerpages.html
│   │   │   │   ├── fck_tablecell.html
│   │   │   │   ├── fck_table.html
│   │   │   │   ├── fck_template
│   │   │   │   │   └── images
│   │   │   │   │   ├── template1.gif
│   │   │   │   │   ├── template2.gif
│   │   │   │   │   └── template3.gif
│   │   │   │   ├── fck_template.html
│   │   │   │   ├── fck_textarea.html
│   │   │   │   ├── fck_textfield.html
│   │   │   │   ├── fck_UpFileBtn
│   │   │   │   │   └── fck_UpFileBtn.js
│   │   │   │   └── fck_UpFileBtn.html
│   │   │   ├── dtd
│   │   │   │   ├── fck_dtd_test.html
│   │   │   │   ├── fck_xhtml10strict.js
│   │   │   │   └── fck_xhtml10transitional.js
│   │   │   ├── fckdebug.html
│   │   │   ├── fckdialog.html
│   │   │   ├── fckeditor.html
│   │   │   ├── fckeditor.original.html
│   │   │   ├── filemanager
│   │   │   │   ├── browser
│   │   │   │   │   └── default
│   │   │   │   │   ├── browser.css
│   │   │   │   │   ├── browser.html
│   │   │   │   │   ├── frmactualfolder.html
│   │   │   │   │   ├── frmcreatefolder.html
│   │   │   │   │   ├── frmfolders.html
│   │   │   │   │   ├── frm.html
│   │   │   │   │   ├── frmresourceslist.html
│   │   │   │   │   ├── frmresourcetype.html
│   │   │   │   │   ├── frmupload.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── ButtonArrow.gif
│   │   │   │   │   │   ├── Folder32.gif
│   │   │   │   │   │   ├── Folder.gif
│   │   │   │   │   │   ├── FolderOpened32.gif
│   │   │   │   │   │   ├── FolderOpened.gif
│   │   │   │   │   │   ├── FolderUp.gif
│   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   ├── 32
│   │   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   └── js
│   │   │   │   │   ├── common.js
│   │   │   │   │   └── fckxml.js
│   │   │   │   └── connectors
│   │   │   │   └── php
│   │   │   │   ├── basexml.php
│   │   │   │   ├── commands.php
│   │   │   │   ├── config.php
│   │   │   │   ├── connector.php
│   │   │   │   ├── io.php
│   │   │   │   ├── _more.php
│   │   │   │   ├── phpcompat.php
│   │   │   │   ├── upload_more.php
│   │   │   │   ├── upload.php
│   │   │   │   └── util.php
│   │   │   ├── images
│   │   │   │   ├── anchor.gif
│   │   │   │   ├── arrow_ltr.gif
│   │   │   │   ├── arrow_rtl.gif
│   │   │   │   ├── smiley
│   │   │   │   │   └── msn
│   │   │   │   │   ├── angel_smile.gif
│   │   │   │   │   ├── angry_smile.gif
│   │   │   │   │   ├── broken_heart.gif
│   │   │   │   │   ├── cake.gif
│   │   │   │   │   ├── confused_smile.gif
│   │   │   │   │   ├── cry_smile.gif
│   │   │   │   │   ├── devil_smile.gif
│   │   │   │   │   ├── embaressed_smile.gif
│   │   │   │   │   ├── envelope.gif
│   │   │   │   │   ├── heart.gif
│   │   │   │   │   ├── kiss.gif
│   │   │   │   │   ├── lightbulb.gif
│   │   │   │   │   ├── omg_smile.gif
│   │   │   │   │   ├── regular_smile.gif
│   │   │   │   │   ├── sad_smile.gif
│   │   │   │   │   ├── shades_smile.gif
│   │   │   │   │   ├── teeth_smile.gif
│   │   │   │   │   ├── thumbs_down.gif
│   │   │   │   │   ├── thumbs_up.gif
│   │   │   │   │   ├── tounge_smile.gif
│   │   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   │   └── wink_smile.gif
│   │   │   │   └── spacer.gif
│   │   │   ├── js
│   │   │   │   ├── fckadobeair.js
│   │   │   │   ├── fckeditorcode_gecko.js
│   │   │   │   └── fckeditorcode_ie.js
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh.js
│   │   │   └── skins
│   │   │   └── default
│   │   │   ├── fck_dialog.css
│   │   │   ├── fck_dialog_ie6.js
│   │   │   ├── fck_editor.css
│   │   │   ├── fck_strip.gif
│   │   │   └── images
│   │   │   ├── dialog.sides.gif
│   │   │   ├── dialog.sides.png
│   │   │   ├── dialog.sides.rtl.png
│   │   │   ├── sprites.gif
│   │   │   ├── sprites.png
│   │   │   ├── toolbar.arrowright.gif
│   │   │   ├── toolbar.buttonarrow.gif
│   │   │   ├── toolbar.collapse.gif
│   │   │   ├── toolbar.end.gif
│   │   │   ├── toolbar.expand.gif
│   │   │   ├── toolbar.separator.gif
│   │   │   └── toolbar.start.gif
│   │   ├── fckconfig.js
│   │   ├── fckeditor.cfc
│   │   ├── fckeditor.js
│   │   ├── fckeditor.php
│   │   ├── fckeditor_php4.php
│   │   ├── fckeditor_php5.php
│   │   ├── fckpackager.xml
│   │   ├── fckstyles.xml
│   │   ├── fcktemplates.xml
│   │   └── license.txt
│   ├── js
│   │   └── jquery-1.8.3.min.js
│   └── uploads
│   ├── kebiao1.png
│   ├── kebiao2.png
│   ├── kebiao2_thumb.png
│   ├── kebiao3.png
│   ├── kebiao3_thumb.png
│   ├── kebiao4.png
│   ├── kebiao4_thumb.png
│   ├── kebiao5.png
│   ├── kebiao5_thumb.png
│   ├── kebiao6.png
│   ├── kebiao6_thumb.png
│   ├── kebiao7.png
│   ├── kebiao7_thumb.png
│   ├── kebiao.png
│   ├── 閮戜紵涓庢垜.jpg
│   └── 閮戜紵涓庢垜_thumb.jpg
├── readme.rst
├── styles
│   ├── general.css
│   └── main.css
├── system
│   ├── core
│   │   ├── Benchmark.php
│   │   ├── CodeIgniter.php
│   │   ├── Common.php
│   │   ├── compat
│   │   │   ├── hash.php
│   │   │   ├── index.html
│   │   │   ├── mbstring.php
│   │   │   ├── password.php
│   │   │   └── standard.php
│   │   ├── Config.php
│   │   ├── Controller.php
│   │   ├── Exceptions.php
│   │   ├── Hooks.php
│   │   ├── index.html
│   │   ├── Input.php
│   │   ├── Lang.php
│   │   ├── Loader.php
│   │   ├── Log.php
│   │   ├── Model.php
│   │   ├── Output.php
│   │   ├── Router.php
│   │   ├── Security.php
│   │   ├── URI.php
│   │   └── Utf8.php
│   ├── database
│   │   ├── DB_cache.php
│   │   ├── DB_driver.php
│   │   ├── DB_forge.php
│   │   ├── DB.php
│   │   ├── DB_query_builder.php
│   │   ├── DB_result.php
│   │   ├── DB_utility.php
│   │   ├── drivers
│   │   │   ├── cubrid
│   │   │   │   ├── cubrid_driver.php
│   │   │   │   ├── cubrid_forge.php
│   │   │   │   ├── cubrid_result.php
│   │   │   │   ├── cubrid_utility.php
│   │   │   │   └── index.html
│   │   │   ├── ibase
│   │   │   │   ├── ibase_driver.php
│   │   │   │   ├── ibase_forge.php
│   │   │   │   ├── ibase_result.php
│   │   │   │   ├── ibase_utility.php
│   │   │   │   └── index.html
│   │   │   ├── index.html
│   │   │   ├── mssql
│   │   │   │   ├── index.html
│   │   │   │   ├── mssql_driver.php
│   │   │   │   ├── mssql_forge.php
│   │   │   │   ├── mssql_result.php
│   │   │   │   └── mssql_utility.php
│   │   │   ├── mysql
│   │   │   │   ├── index.html
│   │   │   │   ├── mysql_driver.php
│   │   │   │   ├── mysql_forge.php
│   │   │   │   ├── mysql_result.php
│   │   │   │   └── mysql_utility.php
│   │   │   ├── mysqli
│   │   │   │   ├── index.html
│   │   │   │   ├── mysqli_driver.php
│   │   │   │   ├── mysqli_forge.php
│   │   │   │   ├── mysqli_result.php
│   │   │   │   └── mysqli_utility.php
│   │   │   ├── oci8
│   │   │   │   ├── index.html
│   │   │   │   ├── oci8_driver.php
│   │   │   │   ├── oci8_forge.php
│   │   │   │   ├── oci8_result.php
│   │   │   │   └── oci8_utility.php
│   │   │   ├── odbc
│   │   │   │   ├── index.html
│   │   │   │   ├── odbc_driver.php
│   │   │   │   ├── odbc_forge.php
│   │   │   │   ├── odbc_result.php
│   │   │   │   └── odbc_utility.php
│   │   │   ├── pdo
│   │   │   │   ├── index.html
│   │   │   │   ├── pdo_driver.php
│   │   │   │   ├── pdo_forge.php
│   │   │   │   ├── pdo_result.php
│   │   │   │   ├── pdo_utility.php
│   │   │   │   └── subdrivers
│   │   │   │   ├── index.html
│   │   │   │   ├── pdo_4d_driver.php
│   │   │   │   ├── pdo_4d_forge.php
│   │   │   │   ├── pdo_cubrid_driver.php
│   │   │   │   ├── pdo_cubrid_forge.php
│   │   │   │   ├── pdo_dblib_driver.php
│   │   │   │   ├── pdo_dblib_forge.php
│   │   │   │   ├── pdo_firebird_driver.php
│   │   │   │   ├── pdo_firebird_forge.php
│   │   │   │   ├── pdo_ibm_driver.php
│   │   │   │   ├── pdo_ibm_forge.php
│   │   │   │   ├── pdo_informix_driver.php
│   │   │   │   ├── pdo_informix_forge.php
│   │   │   │   ├── pdo_mysql_driver.php
│   │   │   │   ├── pdo_mysql_forge.php
│   │   │   │   ├── pdo_oci_driver.php
│   │   │   │   ├── pdo_oci_forge.php
│   │   │   │   ├── pdo_odbc_driver.php
│   │   │   │   ├── pdo_odbc_forge.php
│   │   │   │   ├── pdo_pgsql_driver.php
│   │   │   │   ├── pdo_pgsql_forge.php
│   │   │   │   ├── pdo_sqlite_driver.php
│   │   │   │   ├── pdo_sqlite_forge.php
│   │   │   │   ├── pdo_sqlsrv_driver.php
│   │   │   │   └── pdo_sqlsrv_forge.php
│   │   │   ├── postgre
│   │   │   │   ├── index.html
│   │   │   │   ├── postgre_driver.php
│   │   │   │   ├── postgre_forge.php
│   │   │   │   ├── postgre_result.php
│   │   │   │   └── postgre_utility.php
│   │   │   ├── sqlite
│   │   │   │   ├── index.html
│   │   │   │   ├── sqlite_driver.php
│   │   │   │   ├── sqlite_forge.php
│   │   │   │   ├── sqlite_result.php
│   │   │   │   └── sqlite_utility.php
│   │   │   ├── sqlite3
│   │   │   │   ├── index.html
│   │   │   │   ├── sqlite3_driver.php
│   │   │   │   ├── sqlite3_forge.php
│   │   │   │   ├── sqlite3_result.php
│   │   │   │   └── sqlite3_utility.php
│   │   │   └── sqlsrv
│   │   │   ├── index.html
│   │   │   ├── sqlsrv_driver.php
│   │   │   ├── sqlsrv_forge.php
│   │   │   ├── sqlsrv_result.php
│   │   │   └── sqlsrv_utility.php
│   │   └── index.html
│   ├── fonts
│   │   ├── index.html
│   │   └── texb.ttf
│   ├── helpers
│   │   ├── array_helper.php
│   │   ├── captcha_helper.php
│   │   ├── cookie_helper.php
│   │   ├── date_helper.php
│   │   ├── directory_helper.php
│   │   ├── download_helper.php
│   │   ├── email_helper.php
│   │   ├── file_helper.php
│   │   ├── form_helper.php
│   │   ├── html_helper.php
│   │   ├── index.html
│   │   ├── inflector_helper.php
│   │   ├── language_helper.php
│   │   ├── number_helper.php
│   │   ├── path_helper.php
│   │   ├── security_helper.php
│   │   ├── smiley_helper.php
│   │   ├── string_helper.php
│   │   ├── text_helper.php
│   │   ├── typography_helper.php
│   │   ├── url_helper.php
│   │   └── xml_helper.php
│   ├── index.html
│   ├── language
│   │   ├── english
│   │   │   ├── calendar_lang.php
│   │   │   ├── date_lang.php
│   │   │   ├── db_lang.php
│   │   │   ├── email_lang.php
│   │   │   ├── form_validation_lang.php
│   │   │   ├── ftp_lang.php
│   │   │   ├── imglib_lang.php
│   │   │   ├── index.html
│   │   │   ├── migration_lang.php
│   │   │   ├── number_lang.php
│   │   │   ├── pagination_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   └── upload_lang.php
│   │   └── index.html
│   └── libraries
│   ├── Cache
│   │   ├── Cache.php
│   │   ├── drivers
│   │   │   ├── Cache_apc.php
│   │   │   ├── Cache_dummy.php
│   │   │   ├── Cache_file.php
│   │   │   ├── Cache_memcached.php
│   │   │   ├── Cache_redis.php
│   │   │   ├── Cache_wincache.php
│   │   │   └── index.html
│   │   └── index.html
│   ├── Calendar.php
│   ├── Cart.php
│   ├── Driver.php
│   ├── Email.php
│   ├── Encryption.php
│   ├── Encrypt.php
│   ├── Form_validation.php
│   ├── Ftp.php
│   ├── Image_lib.php
│   ├── index.html
│   ├── Javascript
│   │   ├── index.html
│   │   └── Jquery.php
│   ├── Javascript.php
│   ├── Migration.php
│   ├── Pagination.php
│   ├── Parser.php
│   ├── Profiler.php
│   ├── Session
│   │   ├── drivers
│   │   │   ├── index.html
│   │   │   ├── Session_database_driver.php
│   │   │   ├── Session_files_driver.php
│   │   │   ├── Session_memcached_driver.php
│   │   │   └── Session_redis_driver.php
│   │   ├── index.html
│   │   ├── Session_driver.php
│   │   ├── SessionHandlerInterface.php
│   │   └── Session.php
│   ├── Table.php
│   ├── Trackback.php
│   ├── Typography.php
│   ├── Unit_test.php
│   ├── Upload.php
│   ├── User_agent.php
│   ├── Xmlrpc.php
│   ├── Xmlrpcs.php
│   └── Zip.php
└── themes
└── default
├── address_edit.html
├── address.html
├── comment.html
├── css
│   ├── base.css
│   ├── global.css
│   ├── login-register.css
│   ├── shop_common.css
│   ├── shop_common.css.bak
│   ├── shop_form.css
│   ├── shop_goodPic.css
│   ├── shop_goods.css
│   ├── shop_gouwuche.css
│   ├── shop_header.css
│   ├── shop_header.css.bak
│   ├── shop_home.css
│   ├── shop_list.css
│   ├── shop_manager.css
│   └── shop_shdz_835.css
├── error.html
├── favorite.html
├── flow2.html
├── flow.html
├── footer.html
├── goods.html
├── header.html
├── images
│   ├── 04fb225ea46bd1346f330400eedb7ef2.jpg_small.jpg
│   ├── 10edbe1528c2eef0feb5a956410f5b3b.jpg_small.jpg
│   ├── 16ad561a77804f7c76b03462d852f5ef.jpg_small.jpg
│   ├── 176ef2fe9f642f292cd1f03fa12ad814.jpg_small.jpg
│   ├── 196b173f15685a2019ab3396cd1851a4.jpg
│   ├── 1c8f6c1c8192d7fa5d3cc7f30d7db09c.jpg
│   ├── 1ce6ffadfcf5e45d7fbd86d46d0e90db.gif
│   ├── 1d2dfbead590510046a6522551db8139.gif
│   ├── 1dbc94fa0d60cba3990b89ccb01f82c2.jpg_small.jpg
│   ├── 1dbc94fa0d60cba3990b89ccb01f82c2.jpg_tiny.jpg
│   ├── 209abd835cd2ce2208f2dc42ba10efb4.gif
│   ├── 21151da3bdefc6d9a7120c991fe59800.jpg_small.jpg
│   ├── 26247430b09daa1b441b46008bfb6e6e.gif
│   ├── 2656c79dff5e988bc20d707d1a73a583.jpg
│   ├── 271b2785f67f6119332213367516a426.jpg
│   ├── 29269def49a5d57a24490b69b3312260.gif
│   ├── 2dd23ee4eab519f1ab3492306039d888.jpg_small.jpg
│   ├── 33e9d8a94c644cd87ca97f7ced8024af.jpg
│   ├── 354b80528d2fbeefbab33c563532517e.gif
│   ├── 365_7d5e08127b8d6799209674ecffbfc624.jpg_small.jpg
│   ├── 3f81874d594894d19150843c42fb1f8e.jpg_small.jpg
│   ├── 4148eb0114cca80333da1f6924856bba.jpg_small.jpg
│   ├── 4_5233a92224c35d12c2329f903b248247.jpg_small.jpg
│   ├── 4_7b5239c3f153ae4b67ff760f54408a5b.jpg_small.jpg
│   ├── 4_7b5239c3f153ae4b67ff760f54408a5b.jpg_tiny.jpg
│   ├── 4881e7d174693f1196e669b86643ddd8.jpg_small.jpg
│   ├── 49612054bdba0511da6eeb3a474abdee.jpg_small.jpg
│   ├── 4_cb2f7fb1e4fbe7e07f282c9d227b2776.jpg_small.jpg
│   ├── 52f831e8e55240c3f9d529976b88f8f0.jpg_small.jpg
│   ├── 5591c0054e33b3d86fbdadb536bb50a5.jpg
│   ├── 57ec6dae05bcb152e946401f1327c17a.jpg_small.jpg
│   ├── 5c169228f0f4d8ad2cae5b132c2b269c.jpg_small.jpg
│   ├── 606a56dfbd9509033358ad8beb8ac631.jpg
│   ├── 60ade3674d042f47b1bce40ae42df2c8.jpg_small.jpg
│   ├── 65662b58848da87812ba371c7ff6c1ad.jpg
│   ├── 675e3c273601596996c7d9f56340c7ff.gif
│   ├── 6d9d3912f417bb1cd5c77264e35a7431.jpeg_small.jpeg
│   ├── 6e61a1c953e5bc8c5f1ffdac36862245.gif
│   ├── 6f8ff741b6c12a2d6f9cce86eb6cf1ad.jpg_small.jpg
│   ├── 70cd400bc29f748ebde074e04f1ad081.jpeg_small.jpeg
│   ├── 71f3651a995ef7a8d8bcc00dfe1fa018.gif
│   ├── 75eb906e1b7a2f568f38517c3b338b76.png
│   ├── 7dbaaa6f5324cd4b7a3531dfc5ca810b.jpg
│   ├── 7e6c4529c180781a4918728c59106a0d.jpg
│   ├── 7f7c874c8f3a4f3835c8fe0348b96600.jpg
│   ├── 822d3f8d9c9330f074a2eb993a92d5c5.jpg_small.jpg
│   ├── 84de815edad64024ae2e2c45979dc77e.jpg
│   ├── 84fcb7c4a35bd01af150ca5c0e068374.jpg_small.jpg
│   ├── 89a6d6466b00ae32d3c826b9ec639084.jpg_small.jpg
│   ├── 8cc68700c9e3fc1f6f01d4d065544558.jpg
│   ├── 911ebbce6dcce91a5855f025eb9d8df7.jpg_small.jpg
│   ├── 97caa4b287891a56f9434af1a5b71c82.jpg
│   ├── 984600f5e9d1a07163cbe01e7500ad11.jpg_small.jpg
│   ├── 9c5dee77a6ecdafd9e152fed8c6a4e90.gif
│   ├── a0ac8c6d2d3dc1470d5876923182a8e2.gif
│   ├── a490e4e7242f80d4dcf4d7fa55f2b1d5.jpg_small.jpg
│   ├── ac1d6b368d9a8b048b974186c8d467a9.gif
│   ├── add_cart.png
│   ├── allbg.png
│   ├── avatar.png
│   ├── b16a7e3f6731b29fbb6bd236d4c9d300.jpg_small.jpg
│   ├── b175883eba95e793affb1b1ebbbf85a5.gif
│   ├── b3fa422271ee0e974af458a049ca7e77.jpg_small.jpg
│   ├── bd32bd9949a93f96eeb7bf7fdc619361.jpg
│   ├── c1360b427b816b5c7d6014b9704d4955 (1).png
│   ├── c1cb7ee7bc9b9e4a13bb2d7cc488818b.jpg_small.jpg
│   ├── c1fb24ddebc8e21251b6d43130320c6a.jpg
│   ├── c2d7e0d98aab6f4f4f3c8639fe4b4722.jpg
│   ├── c820846e7f95b467a4c5f86140b26c28.gif
│   ├── cart-empty-bg.png
│   ├── close.gif
│   ├── code.png
│   ├── credit_smile.png
│   ├── d3f4b551af9621eca9dce6b742c66540.gif
│   ├── ddfcab24bd812c466788eeba587f4057.jpg_small.jpg
│   ├── default_store_logo.gif
│   ├── e102c3d38990428473e4bc9961263ede_small.jpg
│   ├── e2dfe57add8fff66ed0964b1effd39b9.jpg
│   ├── e50b5d398e3b890f08e14defbc71a94d.jpg
│   ├── e81345cbc3d8a7e11f9a0e09df68221d.jpg
│   ├── e9c053b2f4273024dab81dce35bdedec.jpg_small.jpg
│   ├── ea36f7ea0aff6af0a50674b1619f7702.jpg_small.jpg
│   ├── ea64cc34f663159a68fde6872718541c.jpg_small.jpg
│   ├── ed3755ac3f250e8a7be3c14343c67832.jpg_small.jpg
│   ├── edbbe33a9dd3ca37861f4045e34edd5c.jpg
│   ├── error.jpg
│   ├── fdde88fceb45f66e35d9da05b23e3e40.jpg_small.jpg
│   ├── group_bg.png
│   ├── hbg.png
│   ├── home_index.css
│   ├── ico.gif
│   ├── img01.jpg
│   ├── img02.jpg
│   ├── img03.jpg
│   ├── img04.jpg
│   ├── index_bg.gif
│   ├── index_bg.png
│   ├── index.guanggao.png
│   ├── index.js
│   ├── jquery.accordion.js
│   ├── jquery.cookie.js
│   ├── jquery.js
│   ├── jquery.KinSlideshow.min.js
│   ├── jquery.lazyload.mini.js
│   ├── jquery.ui.js
│   ├── jquery.validation.min.js
│   ├── layout.css
│   ├── left.gif
│   ├── left.jpg
│   ├── loading.gif
│   ├── login_bg.png
│   ├── logo.gif
│   ├── logo.png
│   ├── module_filter_line.gif
│   ├── nc_home_index.gif
│   ├── nc_home_index.png
│   ├── nc_nav.png
│   ├── nc_nav_shadow.png
│   ├── nc_search_btn.gif
│   ├── nc_sortbar.gif
│   ├── nc_topbar.gif
│   ├── ncus_public.png
│   ├── ncus_repeat_x.png
│   ├── public.png
│   ├── right.gif
│   ├── rmb.gif
│   ├── shoufa.jpg
│   ├── step_chart.png
│   ├── temp.jpg
│   ├── text.gif
│   ├── tip-yellowsimple_arrows.gif
│   ├── web-1-11_f3acb5954fbdeef69591fd5a84ac3adb.png
│   ├── web-1-13_53bfbfc958cb55a435545033bd075bf3.png
│   ├── web-1-18_4c91b4889516f10059e6ccf921542323.gif
│   ├── web-2-21_82132e2a55300f4e3a32be07af077d63.png
│   ├── web-2-28_9f2f7dcad3049df7450cecd179e142d8.gif
│   ├── web-3-31_ebd488bcb4e1e97798cc0528135fbdd6.png
│   ├── web-3-38_ff9bd2d724f7138cec1b1937000f4feb.jpg
│   ├── web-4-41_aa1184ab1026c95ec8cc3c6f8c282287.png
│   └── web-4-48_cce6e8b8852046a712028b85f99bfe20.jpg
├── index.html
├── js
│   ├── 163css.js
│   ├── focus.js
│   ├── jquery.goodnums.js
│   ├── jquery.js
│   ├── lib.js
│   ├── shop_goodPic_base.js
│   ├── shop_goods.js
│   ├── shop_goods_tab.js
│   ├── shop_gouwuche.js
│   ├── shop_home_tab.js
│   ├── shop_list.js
│   └── topNav.js
├── list.html
├── login.html
├── member.html
├── member_info.html
├── menu1.html
├── menu2.html
├── message.html
├── order.html
├── password_eidt.html
└── register.html

141 directories, 1051 files

标签:

实例下载地址

CI框架学习笔记源码.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警