在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 考试程序 毕业设计 php

考试程序 毕业设计 php

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.60M
  • 下载次数:7
  • 浏览次数:95
  • 发布时间:2020-10-17
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
考试程序 毕业设计 php php考试 大家一起交流学习
【实例截图】
【核心代码】
uvjifu
└── 新建文件夹
├── api
│   ├── config.inc.php
│   ├── include
│   │   └── db_mysql.class.php
│   ├── uc_client
│   │   ├── client.php
│   │   ├── control
│   │   │   ├── app.php
│   │   │   ├── cache.php
│   │   │   ├── domain.php
│   │   │   ├── feed.php
│   │   │   ├── friend.php
│   │   │   ├── index.htm
│   │   │   ├── mail.php
│   │   │   ├── pm.php
│   │   │   ├── tag.php
│   │   │   └── user.php
│   │   ├── data
│   │   │   ├── cache
│   │   │   │   ├── apps.php
│   │   │   │   └── index.htm
│   │   │   └── index.htm
│   │   ├── index.htm
│   │   ├── lib
│   │   │   ├── db.class.php
│   │   │   ├── index.htm
│   │   │   ├── sendmail.inc.php
│   │   │   ├── uccode.class.php
│   │   │   └── xml.class.php
│   │   └── model
│   │   ├── app.php
│   │   ├── base.php
│   │   ├── cache.php
│   │   ├── domain.php
│   │   ├── friend.php
│   │   ├── index.htm
│   │   ├── mail.php
│   │   ├── misc.php
│   │   ├── note.php
│   │   ├── pm.php
│   │   ├── tag.php
│   │   └── user.php
│   └── uc.php
├── app
│   ├── bank
│   │   ├── api.php
│   │   ├── cls
│   │   │   ├── coupon.cls.php
│   │   │   └── orders.cls.php
│   │   ├── master.php
│   │   └── tpls
│   │   └── master
│   │   ├── addcoupon.tpl
│   │   ├── coupon.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── nav.tpl
│   │   ├── orders.tpl
│   │   └── outcoupon.tpl
│   ├── content
│   │   ├── app.php
│   │   ├── cls
│   │   │   ├── ad.cls.php
│   │   │   ├── api.cls.php
│   │   │   ├── block.cls.php
│   │   │   ├── config.cls.php
│   │   │   ├── content.cls.php
│   │   │   ├── position.cls.php
│   │   │   └── work.cls.php
│   │   ├── master.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   │   └── theme.css
│   │   │   └── img
│   │   │   ├── glyphicons-halflings.png
│   │   │   ├── glyphicons-halflings-white.png
│   │   │   └── theme
│   │   │   ├── bg.png
│   │   │   ├── foot.jpg
│   │   │   ├── logo.jpg
│   │   │   └── title.jpg
│   │   └── tpls
│   │   ├── app
│   │   │   ├── category_default.tpl
│   │   │   ├── category_images.tpl
│   │   │   ├── category_page.tpl
│   │   │   ├── category_product.tpl
│   │   │   ├── content_default.tpl
│   │   │   ├── content_images.tpl
│   │   │   ├── content_product.tpl
│   │   │   ├── foot.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   └── nav.tpl
│   │   └── master
│   │   ├── addfield.tpl
│   │   ├── addmodule.tpl
│   │   ├── blocks_add.tpl
│   │   ├── blocks_modify.tpl
│   │   ├── blocks.tpl
│   │   ├── category_add.tpl
│   │   ├── category_edit.tpl
│   │   ├── category.tpl
│   │   ├── content_add.tpl
│   │   ├── content_copy.tpl
│   │   ├── content_edit.tpl
│   │   ├── content_move.tpl
│   │   ├── content_position.tpl
│   │   ├── content.tpl
│   │   ├── fields.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── modifyfield.tpl
│   │   ├── modifymodule.tpl
│   │   ├── module.tpl
│   │   ├── nav.tpl
│   │   ├── preview_ajax.tpl
│   │   └── preview.tpl
│   ├── core
│   │   ├── api.php
│   │   ├── cls
│   │   │   └── apps.cls.php
│   │   ├── master.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   │   ├── bootstrap-combined.min.css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap-responsive.css
│   │   │   │   ├── datepicker.css
│   │   │   │   ├── img
│   │   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   │   └── glyphicons-halflings-white.png
│   │   │   │   ├── jquery-ui.css
│   │   │   │   ├── layoutit.css
│   │   │   │   └── plugin.css
│   │   │   ├── images
│   │   │   │   ├── favicon.png
│   │   │   │   ├── layout.png
│   │   │   │   ├── loader.gif
│   │   │   │   ├── noimage.gif
│   │   │   │   ├── none.gif
│   │   │   │   ├── noupload.gif
│   │   │   │   ├── private2.png
│   │   │   │   ├── private.png
│   │   │   │   └── uploadico.png
│   │   │   ├── img
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   └── glyphicons-halflings-white.png
│   │   │   └── js
│   │   │   ├── bootstrap-datepicker.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── ckeditor
│   │   │   │   ├── build-config.js
│   │   │   │   ├── CHANGES.md
│   │   │   │   ├── ckeditor.js
│   │   │   │   ├── config.js
│   │   │   │   ├── contents.css
│   │   │   │   ├── lang
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh.js
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── plugins
│   │   │   │   │   ├── a11yhelp
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── a11yhelp.js
│   │   │   │   │   │   └── lang
│   │   │   │   │   │   ├── ar.js
│   │   │   │   │   │   ├── bg.js
│   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   ├── da.js
│   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   ├── gu.js
│   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   ├── hi.js
│   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   ├── hu.js
│   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   ├── ja.js
│   │   │   │   │   │   ├── km.js
│   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   ├── lt.js
│   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   ├── mk.js
│   │   │   │   │   │   ├── mn.js
│   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   ├── pt.js
│   │   │   │   │   │   ├── ro.js
│   │   │   │   │   │   ├── ru.js
│   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   ├── sl.js
│   │   │   │   │   │   ├── sq.js
│   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   ├── uk.js
│   │   │   │   │   │   ├── vi.js
│   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   ├── about
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── about.js
│   │   │   │   │   │   └── logo_ckeditor.png
│   │   │   │   │   ├── clipboard
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── paste.js
│   │   │   │   │   ├── colordialog
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── colordialog.js
│   │   │   │   │   ├── dialog
│   │   │   │   │   │   └── dialogDefinition.js
│   │   │   │   │   ├── div
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── div.js
│   │   │   │   │   ├── fakeobjects
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   ├── find
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── find.js
│   │   │   │   │   ├── flash
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── flash.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── placeholder.png
│   │   │   │   │   ├── forms
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── button.js
│   │   │   │   │   │   │   ├── checkbox.js
│   │   │   │   │   │   │   ├── form.js
│   │   │   │   │   │   │   ├── hiddenfield.js
│   │   │   │   │   │   │   ├── radio.js
│   │   │   │   │   │   │   ├── select.js
│   │   │   │   │   │   │   ├── textarea.js
│   │   │   │   │   │   │   └── textfield.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── hiddenfield.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── iframe
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── iframe.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── placeholder.png
│   │   │   │   │   ├── image
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── image.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── noimage.png
│   │   │   │   │   ├── link
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   └── link.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── anchor.png
│   │   │   │   │   ├── liststyle
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── liststyle.js
│   │   │   │   │   ├── magicline
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── icon.png
│   │   │   │   │   ├── pagebreak
│   │   │   │   │   │   └── images
│   │   │   │   │   │   └── pagebreak.gif
│   │   │   │   │   ├── pastefromword
│   │   │   │   │   │   └── filter
│   │   │   │   │   │   └── default.js
│   │   │   │   │   ├── preview
│   │   │   │   │   │   └── preview.html
│   │   │   │   │   ├── scayt
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── options.js
│   │   │   │   │   │   │   └── toolbar.css
│   │   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   │   └── README.md
│   │   │   │   │   ├── showblocks
│   │   │   │   │   │   └── 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
│   │   │   │   │   ├── smiley
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   └── smiley.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── angel_smile.gif
│   │   │   │   │   │   ├── angry_smile.gif
│   │   │   │   │   │   ├── broken_heart.gif
│   │   │   │   │   │   ├── confused_smile.gif
│   │   │   │   │   │   ├── cry_smile.gif
│   │   │   │   │   │   ├── devil_smile.gif
│   │   │   │   │   │   ├── embaressed_smile.gif
│   │   │   │   │   │   ├── embarrassed_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
│   │   │   │   │   │   ├── tongue_smile.gif
│   │   │   │   │   │   ├── tounge_smile.gif
│   │   │   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   │   │   └── wink_smile.gif
│   │   │   │   │   ├── specialchar
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── ca.js
│   │   │   │   │   │   │   ├── cs.js
│   │   │   │   │   │   │   ├── cy.js
│   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   ├── el.js
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── eo.js
│   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   ├── et.js
│   │   │   │   │   │   │   ├── fa.js
│   │   │   │   │   │   │   ├── fi.js
│   │   │   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   ├── he.js
│   │   │   │   │   │   │   ├── hr.js
│   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   ├── ku.js
│   │   │   │   │   │   │   ├── lv.js
│   │   │   │   │   │   │   ├── nb.js
│   │   │   │   │   │   │   ├── nl.js
│   │   │   │   │   │   │   ├── no.js
│   │   │   │   │   │   │   ├── pl.js
│   │   │   │   │   │   │   ├── pt-br.js
│   │   │   │   │   │   │   ├── sk.js
│   │   │   │   │   │   │   ├── sq.js
│   │   │   │   │   │   │   ├── sv.js
│   │   │   │   │   │   │   ├── th.js
│   │   │   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   │   │   ├── tr.js
│   │   │   │   │   │   │   ├── ug.js
│   │   │   │   │   │   │   └── zh-cn.js
│   │   │   │   │   │   └── specialchar.js
│   │   │   │   │   ├── table
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── table.js
│   │   │   │   │   ├── tabletools
│   │   │   │   │   │   └── dialogs
│   │   │   │   │   │   └── tableCell.js
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── dialogs
│   │   │   │   │   │   │   ├── templates.css
│   │   │   │   │   │   │   └── templates.js
│   │   │   │   │   │   └── templates
│   │   │   │   │   │   ├── default.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── template1.gif
│   │   │   │   │   │   ├── template2.gif
│   │   │   │   │   │   └── template3.gif
│   │   │   │   │   └── wsc
│   │   │   │   │   ├── dialogs
│   │   │   │   │   │   ├── ciframe.html
│   │   │   │   │   │   ├── tmpFrameset.html
│   │   │   │   │   │   ├── wsc.css
│   │   │   │   │   │   └── wsc.js
│   │   │   │   │   ├── LICENSE.md
│   │   │   │   │   └── README.md
│   │   │   │   ├── README.md
│   │   │   │   ├── skins
│   │   │   │   │   └── moono
│   │   │   │   │   ├── dialog.css
│   │   │   │   │   ├── dialog_ie7.css
│   │   │   │   │   ├── dialog_ie8.css
│   │   │   │   │   ├── dialog_ie.css
│   │   │   │   │   ├── dialog_iequirks.css
│   │   │   │   │   ├── dialog_opera.css
│   │   │   │   │   ├── editor.css
│   │   │   │   │   ├── editor_gecko.css
│   │   │   │   │   ├── editor_ie7.css
│   │   │   │   │   ├── editor_ie8.css
│   │   │   │   │   ├── editor_ie.css
│   │   │   │   │   ├── editor_iequirks.css
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── arrow.png
│   │   │   │   │   │   ├── close.png
│   │   │   │   │   │   └── mini.png
│   │   │   │   │   └── readme.md
│   │   │   │   └── styles.js
│   │   │   ├── html5.js
│   │   │   ├── jquery-1.9.1.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery-ui.js
│   │   │   ├── plugin.js
│   │   │   ├── swfu
│   │   │   │   ├── swfuploadbutton.swf
│   │   │   │   ├── swfupload.js
│   │   │   │   └── swfupload.swf
│   │   │   └── wechat.js
│   │   └── tpls
│   │   └── master
│   │   ├── apps.tpl
│   │   ├── config.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── login.tpl
│   │   ├── menu.tpl
│   │   └── nav.tpl
│   ├── document
│   │   ├── api.php
│   │   └── config
│   │   └── config.php
│   ├── exam
│   │   ├── api.php
│   │   ├── app.php
│   │   ├── cls
│   │   │   ├── answer.cls.php
│   │   │   ├── area.cls.php
│   │   │   ├── basic.cls.php
│   │   │   ├── exam.cls.php
│   │   │   ├── favor.cls.php
│   │   │   ├── info.cls.php
│   │   │   ├── question.cls.php
│   │   │   └── section.cls.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── lang
│   │   │   └── exam.lang.php
│   │   ├── master.php
│   │   ├── styles
│   │   │   ├── css
│   │   │   │   ├── core.css
│   │   │   │   ├── exam_paper.css
│   │   │   │   ├── global.css
│   │   │   │   ├── login.css
│   │   │   │   ├── mathquill.css
│   │   │   │   ├── plugin.css
│   │   │   │   └── style.css
│   │   │   ├── image
│   │   │   │   ├── answer_note_tit.jpg
│   │   │   │   ├── answer_tit.jpg
│   │   │   │   ├── body_bg.jpg
│   │   │   │   ├── btn_begin_exam.jpg
│   │   │   │   ├── btn_begin_exam_n.jpg
│   │   │   │   ├── btn_begin_exam_y.jpg
│   │   │   │   ├── btn_begin_exam_z.jpg
│   │   │   │   ├── btn_begin_exer.jpg
│   │   │   │   ├── btn_login.jpg
│   │   │   │   ├── btn_open_basic.jpg
│   │   │   │   ├── btn_qu_option.jpg
│   │   │   │   ├── calculator.jpg
│   │   │   │   ├── caozuoshuoming_tit.jpg
│   │   │   │   ├── clue_bg.jpg
│   │   │   │   ├── column_pic1.jpg
│   │   │   │   ├── column_pic2.jpg
│   │   │   │   ├── column_pic3.jpg
│   │   │   │   ├── column_pic4.jpg
│   │   │   │   ├── column_pic5.jpg
│   │   │   │   ├── column_pic6.jpg
│   │   │   │   ├── editor
│   │   │   │   │   ├── bg-menu-tab.gif
│   │   │   │   │   ├── ColumnBg.gif
│   │   │   │   │   ├── function.gif
│   │   │   │   │   ├── icon1.png
│   │   │   │   │   └── icon.png
│   │   │   │   ├── editor.jpg
│   │   │   │   ├── exam_notice_basic.jpg
│   │   │   │   ├── exam_notice_tit.jpg
│   │   │   │   ├── exam_opened_basic.jpg
│   │   │   │   ├── exam_paper_tit.jpg
│   │   │   │   ├── exam_tit.jpg
│   │   │   │   ├── exer_notice_tit.jpg
│   │   │   │   ├── fenshu.gif
│   │   │   │   ├── h-1.jpg
│   │   │   │   ├── h-2.jpg
│   │   │   │   ├── h-3.jpg
│   │   │   │   ├── h-4.jpg
│   │   │   │   ├── h-5.jpg
│   │   │   │   ├── h-6.jpg
│   │   │   │   ├── h-7.jpg
│   │   │   │   ├── head_banner.jpg
│   │   │   │   ├── head_bg.jpg
│   │   │   │   ├── home_btn.jpg
│   │   │   │   ├── house_tit.jpg
│   │   │   │   ├── icon_dot.jpg
│   │   │   │   ├── icon.gif
│   │   │   │   ├── icon_listen.jpg
│   │   │   │   ├── icon-mark.gif
│   │   │   │   ├── icon.psd
│   │   │   │   ├── icon_shopcar.jpg
│   │   │   │   ├── importdemo.jpg
│   │   │   │   ├── kaoshengxinxi_tit.jpg
│   │   │   │   ├── km_kj_tit.jpg
│   │   │   │   ├── left_lesson_bg_hb.jpg
│   │   │   │   ├── left_lesson_bg_mid.jpg
│   │   │   │   ├── lesson_nav_bg.gif
│   │   │   │   ├── login02_tit.jpg
│   │   │   │   ├── login_tit.jpg
│   │   │   │   ├── lvbiao_close_btn.jpg
│   │   │   │   ├── open_left_btn.gif
│   │   │   │   ├── paper.png
│   │   │   │   ├── photo.jpg
│   │   │   │   ├── qianghuaxunlian_tit.jpg
│   │   │   │   ├── result_img.jpg
│   │   │   │   ├── result_tit.jpg
│   │   │   │   ├── right_760_bor_hb.jpg
│   │   │   │   ├── right_760_bor_mid.jpg
│   │   │   │   ├── right_970_bor_hb.jpg
│   │   │   │   ├── right_970_bor_mid.jpg
│   │   │   │   ├── save_img.jpg
│   │   │   │   ├── shitiliebiao_tit.jpg
│   │   │   │   ├── shouze_tit.jpg
│   │   │   │   ├── simulation_tit.jpg
│   │   │   │   ├── suijikaoshi_tit.jpg
│   │   │   │   ├── time_bg.jpg
│   │   │   │   ├── tishi_tit.jpg
│   │   │   │   ├── tit_bg.jpg
│   │   │   │   ├── usertabledemo.jpg
│   │   │   │   ├── wrong_note_tit.jpg
│   │   │   │   └── xuanzekemu_tit.jpg
│   │   │   └── js
│   │   │   ├── index.js
│   │   │   ├── lesson_nav.js
│   │   │   ├── lib.js
│   │   │   ├── mathquill.min.js
│   │   │   ├── paperview.js
│   │   │   ├── plugin.js
│   │   │   └── SpryCollapsiblePanel.js
│   │   ├── teach.php
│   │   └── tpls
│   │   ├── app
│   │   │   ├── basics_detail.tpl
│   │   │   ├── basics_open.tpl
│   │   │   ├── basics.tpl
│   │   │   ├── bread.tpl
│   │   │   ├── exam_mkscore.tpl
│   │   │   ├── exam_order.tpl
│   │   │   ├── exampaper_mkscore.tpl
│   │   │   ├── exampaper_paper.tpl
│   │   │   ├── exampaper_score.tpl
│   │   │   ├── exampaper_sign.tpl
│   │   │   ├── exam_paper.tpl
│   │   │   ├── exampaper.tpl
│   │   │   ├── exampaper_view.tpl
│   │   │   ├── exam_rules.tpl
│   │   │   ├── exam_score.tpl
│   │   │   ├── exam_selectsubject.tpl
│   │   │   ├── exam_sign.tpl
│   │   │   ├── exam.tpl
│   │   │   ├── exam_view.tpl
│   │   │   ├── exercise_mkscore.tpl
│   │   │   ├── exercise_number.tpl
│   │   │   ├── exercise_paper.tpl
│   │   │   ├── exercise_score.tpl
│   │   │   ├── exercise.tpl
│   │   │   ├── exercise_view.tpl
│   │   │   ├── favor.tpl
│   │   │   ├── foot.tpl
│   │   │   ├── head.tpl
│   │   │   ├── history_exampaperview.tpl
│   │   │   ├── history_exampaperwrongs.tpl
│   │   │   ├── history_examview.tpl
│   │   │   ├── history_examwrongs.tpl
│   │   │   ├── history_exerciseview.tpl
│   │   │   ├── history_exercisewrongs.tpl
│   │   │   ├── history.tpl
│   │   │   ├── index.tpl
│   │   │   ├── left.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── plugin_editor.tpl
│   │   │   └── record.tpl
│   │   ├── master
│   │   │   ├── basic_addarea.tpl
│   │   │   ├── basic_addpoint.tpl
│   │   │   ├── basic_addquestype.tpl
│   │   │   ├── basic_addsection.tpl
│   │   │   ├── basic_addsubject.tpl
│   │   │   ├── basic_add.tpl
│   │   │   ├── basic_area.tpl
│   │   │   ├── basic_examrange.tpl
│   │   │   ├── basic_modifyarea.tpl
│   │   │   ├── basic_modifypoint.tpl
│   │   │   ├── basic_modifyquest.tpl
│   │   │   ├── basic_modifysection.tpl
│   │   │   ├── basic_modifysubject.tpl
│   │   │   ├── basic_modify.tpl
│   │   │   ├── basic_point.tpl
│   │   │   ├── basic_questype.tpl
│   │   │   ├── basic_section.tpl
│   │   │   ├── basic_subject.tpl
│   │   │   ├── basic.tpl
│   │   │   ├── exams_ajaxsetting.tpl
│   │   │   ├── exams_auto.tpl
│   │   │   ├── exams_modifyauto.tpl
│   │   │   ├── exams_modifyself.tpl
│   │   │   ├── exams_selected.tpl
│   │   │   ├── exams_self.tpl
│   │   │   ├── exams.tpl
│   │   │   ├── header.tpl
│   │   │   ├── index.tpl
│   │   │   ├── menu.tpl
│   │   │   ├── nav.tpl
│   │   │   ├── question_add.tpl
│   │   │   ├── question_batadd.tpl
│   │   │   ├── questionchildrows_modify.tpl
│   │   │   ├── question_detail.tpl
│   │   │   ├── question_filebatadd.tpl
│   │   │   ├── questionrows_addchild.tpl
│   │   │   ├── questionrows_add.tpl
│   │   │   ├── questionrows_bataddchild.tpl
│   │   │   ├── questionrows_batadd.tpl
│   │   │   ├── questionrows_detail.tpl
│   │   │   ├── questionrows_list.tpl
│   │   │   ├── questionrows_modify.tpl
│   │   │   ├── questionrows.tpl
│   │   │   ├── questions_modify.tpl
│   │   │   ├── questions.tpl
│   │   │   ├── recyle_knows.tpl
│   │   │   ├── recyle_questions.tpl
│   │   │   ├── recyle_rowsquestions.tpl
│   │   │   ├── selectquestions.tpl
│   │   │   ├── users_basic.tpl
│   │   │   └── user.tpl
│   │   └── teach
│   │   ├── basic_addarea.tpl
│   │   ├── basic_addpoint.tpl
│   │   ├── basic_addquestype.tpl
│   │   ├── basic_addsection.tpl
│   │   ├── basic_addsubject.tpl
│   │   ├── basic_add.tpl
│   │   ├── basic_area.tpl
│   │   ├── basic_examrange.tpl
│   │   ├── basic_modifypoint.tpl
│   │   ├── basic_modifysection.tpl
│   │   ├── basic_modifysubject.tpl
│   │   ├── basic_modify.tpl
│   │   ├── basic_point.tpl
│   │   ├── basic_questype.tpl
│   │   ├── basic_section.tpl
│   │   ├── basic_subject.tpl
│   │   ├── basic.tpl
│   │   ├── exams_ajaxsetting.tpl
│   │   ├── exams_auto.tpl
│   │   ├── exams_modifyauto.tpl
│   │   ├── exams_modifyself.tpl
│   │   ├── exams_selected.tpl
│   │   ├── exams_self.tpl
│   │   ├── exams.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── nav.tpl
│   │   ├── question_add.tpl
│   │   ├── question_batadd.tpl
│   │   ├── questionchildrows_modify.tpl
│   │   ├── question_detail.tpl
│   │   ├── questionrows_addchild.tpl
│   │   ├── questionrows_add.tpl
│   │   ├── questionrows_bataddchild.tpl
│   │   ├── questionrows_batadd.tpl
│   │   ├── questionrows_detail.tpl
│   │   ├── questionrows_list.tpl
│   │   ├── questionrows_modify.tpl
│   │   ├── questionrows.tpl
│   │   ├── questions_modify.tpl
│   │   ├── questions.tpl
│   │   ├── recyle_knows.tpl
│   │   ├── recyle_questions.tpl
│   │   ├── recyle_rowsquestions.tpl
│   │   ├── selectquestions.tpl
│   │   ├── users_basic.tpl
│   │   ├── users_decide.tpl
│   │   ├── users_history.tpl
│   │   ├── users_scorelist.tpl
│   │   └── user.tpl
│   └── user
│   ├── api.php
│   ├── app.php
│   ├── center.php
│   ├── cls
│   │   ├── config.cls.php
│   │   ├── msg.cls.php
│   │   └── user.cls.php
│   ├── master.php
│   ├── styles
│   │   ├── css
│   │   │   └── theme.css
│   │   └── img
│   │   └── theme
│   │   ├── bom_cor.png
│   │   └── logo.png
│   └── tpls
│   ├── api
│   │   ├── foot.tpl
│   │   ├── header.tpl
│   │   └── payfor_status.tpl
│   ├── app
│   │   ├── foot.tpl
│   │   ├── header.tpl
│   │   ├── login.tpl
│   │   └── register.tpl
│   ├── center
│   │   ├── foot.tpl
│   │   ├── header.tpl
│   │   ├── index.tpl
│   │   ├── menu.tpl
│   │   ├── modifyuser.tpl
│   │   ├── nav.tpl
│   │   ├── payfor_detail.tpl
│   │   └── payfor.tpl
│   └── master
│   ├── actor.tpl
│   ├── addactor.tpl
│   ├── addfield.tpl
│   ├── addmodule.tpl
│   ├── adduser.tpl
│   ├── batadduser.tpl
│   ├── fields.tpl
│   ├── header.tpl
│   ├── index.tpl
│   ├── login.tpl
│   ├── menu.tpl
│   ├── modifyactor.tpl
│   ├── modifyfield.tpl
│   ├── modifymodule.tpl
│   ├── modifyuser.tpl
│   ├── module.tpl
│   ├── nav.tpl
│   ├── preview.tpl
│   └── user.tpl
├── files
│   ├── attach
│   │   └── images
│   │   └── content
│   │   ├── 20130829
│   │   │   ├── 13777898437999.jpg
│   │   │   ├── 13777900502818.jpg
│   │   │   ├── 13777903815141.jpg
│   │   │   ├── 13777903931683.jpg
│   │   │   ├── 13777903933500.jpg
│   │   │   ├── 13777903938179.jpg
│   │   │   ├── 13777906338210.jpg
│   │   │   ├── 13777906461128.jpg
│   │   │   ├── 13777906477603.jpg
│   │   │   ├── 13777906479497.jpg
│   │   │   ├── 13777911828841.jpg
│   │   │   └── 13777911996533.jpg
│   │   └── 20130830
│   │   └── 13777926687712.jpg
│   └── public
│   ├── font
│   │   └── Symbola.ttf
│   ├── js
│   │   ├── artDialog.js
│   │   ├── fusioncharts
│   │   │   └── fusioncharts.js
│   │   ├── jquery.artDialog.js
│   │   ├── jquery.countdown.js
│   │   └── skins
│   │   ├── aero
│   │   │   ├── aero_s2.png
│   │   │   ├── aero_s.png
│   │   │   └── ie6
│   │   │   ├── aui_close.hover.png
│   │   │   ├── aui_close.png
│   │   │   ├── aui_e.png
│   │   │   ├── aui_ne.png
│   │   │   ├── aui_n.png
│   │   │   ├── aui_nw.png
│   │   │   ├── aui_se.png
│   │   │   ├── aui_s.png
│   │   │   ├── aui_sw.png
│   │   │   ├── aui_title_icon.png
│   │   │   └── aui_w.png
│   │   ├── aero.css
│   │   ├── black
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── black.css
│   │   ├── blue
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── blue.css
│   │   ├── chrome
│   │   │   ├── border.png
│   │   │   └── chrome_s.png
│   │   ├── chrome.css
│   │   ├── default.css
│   │   ├── green
│   │   │   ├── bg2.png
│   │   │   ├── bg_css3_2.png
│   │   │   ├── bg_css3.png
│   │   │   ├── bg.png
│   │   │   ├── color_bg.png
│   │   │   └── ie6
│   │   │   ├── close.hover.png
│   │   │   ├── close.png
│   │   │   ├── e.png
│   │   │   ├── ne.png
│   │   │   ├── n.png
│   │   │   ├── nw.png
│   │   │   ├── se.png
│   │   │   ├── s.png
│   │   │   ├── sw.png
│   │   │   └── w.png
│   │   ├── green.css
│   │   ├── icons
│   │   │   ├── error.png
│   │   │   ├── face-sad.png
│   │   │   ├── face-smile.png
│   │   │   ├── loading.gif
│   │   │   ├── question.png
│   │   │   ├── succeed.png
│   │   │   └── warning.png
│   │   ├── idialog
│   │   │   ├── idialog_s2.png
│   │   │   ├── idialog_s.png
│   │   │   └── ie6
│   │   │   ├── aui_close.hover.png
│   │   │   ├── aui_close.png
│   │   │   ├── aui_e.png
│   │   │   ├── aui_ne.png
│   │   │   ├── aui_n.png
│   │   │   ├── aui_nw.png
│   │   │   ├── aui_se.png
│   │   │   ├── aui_s.png
│   │   │   ├── aui_sw.png
│   │   │   └── aui_w.png
│   │   ├── idialog.css
│   │   ├── opera
│   │   │   ├── ie6
│   │   │   │   ├── aui_close.hover.png
│   │   │   │   ├── aui_close.png
│   │   │   │   ├── aui_e.png
│   │   │   │   ├── aui_ne.png
│   │   │   │   ├── aui_n.png
│   │   │   │   ├── aui_nw.png
│   │   │   │   ├── aui_se.png
│   │   │   │   ├── aui_s.png
│   │   │   │   ├── aui_sw.png
│   │   │   │   └── aui_w.png
│   │   │   ├── s1.png
│   │   │   └── s2.png
│   │   ├── opera.css
│   │   ├── simple.css
│   │   └── twitter.css
│   └── uploadify
│   ├── cancel.png
│   ├── css
│   │   └── uploadify.css
│   └── scripts
│   ├── expressInstall.swf
│   ├── jquery.uploadify.v2.1.0.js
│   ├── swfobject.js
│   └── uploadify.swf
├── index.php
├── lib
│   ├── alipay.cls.php
│   ├── api.cls.php
│   ├── ca.cls.php
│   ├── category.cls.php
│   ├── cnf.cls.php
│   ├── config.inc.php
│   ├── db.cls.php
│   ├── editor.cls.php
│   ├── ev.cls.php
│   ├── files.cls.php
│   ├── ftp.cls.php
│   ├── gd.cls.php
│   ├── gms.cls.php
│   ├── html.cls.php
│   ├── http.cls.php
│   ├── include
│   │   ├── alipay.func.php
│   │   ├── alipay_notify.class.php
│   │   ├── alipay_submit.class.php
│   │   ├── php_serial.class.php
│   │   └── sphinxapi.php
│   ├── init.cls.php
│   ├── module.cls.php
│   ├── pg.cls.php
│   ├── session.cls.php
│   ├── smtp.cls.php
│   ├── sphinx.cls.php
│   ├── sql.cls.php
│   ├── strings.cls.php
│   ├── tpl.cls.php
│   └── wechat.cls.php
├── pechina.sql
└── readMe.txt

156 directories, 784 files

标签:

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警