PHP考试答题系统
.
├── favicon.ico
├── index.php
├── install
│ ├── index.php
│ ├── mysqldata
│ │ └── hadsky.sql
│ ├── phpscript
│ │ └── install.php
│ └── template
│ ├── frame.html
│ ├── htmltip.html
│ ├── img
│ │ └── error.png
│ ├── step1.html
│ ├── step2.html
│ └── step3.html
├── phpscript
│ ├── go.php
│ ├── handin.php
│ ├── home.php
│ ├── login.php
│ ├── plug
│ │ └── superadmin
│ │ ├── config.xml
│ │ ├── delete.php
│ │ ├── index.php
│ │ ├── logo.png
│ │ ├── make.php
│ │ ├── save.php
│ │ └── template
│ │ ├── app.html
│ │ ├── base.html
│ │ ├── bk.html
│ │ ├── body.html
│ │ ├── css
│ │ │ └── global.css
│ │ ├── delete.html
│ │ ├── editapp.html
│ │ ├── editbk.html
│ │ ├── editti.html
│ │ ├── fankui.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── img
│ │ │ ├── alipayewm.png
│ │ │ ├── ban.png
│ │ │ ├── default_logo.png
│ │ │ ├── logo.png
│ │ │ ├── plugin_file_photo.png
│ │ │ └── update.gif
│ │ ├── info.html
│ │ ├── nav.html
│ │ ├── newapp.html
│ │ ├── newbk.html
│ │ ├── newti.html
│ │ ├── null.html
│ │ ├── save.html
│ │ └── ti.html
│ ├── plug.php
│ └── verifycode.php
├── puyuetian
│ ├── class.php
│ ├── function.php
│ ├── mysql
│ │ ├── config.php
│ │ └── install.php
│ ├── plug
│ │ └── config.php
│ ├── plug.php
│ ├── show.php
│ └── variable.php
├── puyuetian.php
└── template
├── default
│ ├── css
│ │ ├── hadsky-hook.css
│ │ ├── puyuetian.css
│ │ └── upload.css
│ └── js
│ ├── puyuetian.js
│ ├── startMove.js
│ └── upload.js
├── html5ui
│ ├── amaze
│ │ ├── css
│ │ │ ├── admin.css
│ │ │ ├── amazeui.css
│ │ │ ├── amazeui.flat.css
│ │ │ ├── amazeui.flat.min.css
│ │ │ ├── amazeui.min.css
│ │ │ └── app.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ └── js
│ │ ├── amazeui.ie8polyfill.js
│ │ ├── amazeui.ie8polyfill.min.js
│ │ ├── amazeui.js
│ │ ├── amazeui.legacy.js
│ │ ├── amazeui.legacy.min.js
│ │ ├── amazeui.min.js
│ │ ├── amazeui.widgets.helper.js
│ │ ├── amazeui.widgets.helper.min.js
│ │ ├── app.js
│ │ ├── handlebars.min.js
│ │ ├── jquery.min.js
│ │ └── polyfill
│ │ ├── rem.min.js
│ │ └── respond.min.js
│ ├── bootstrap
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ └── bootstrap.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ ├── font-awesome
│ │ ├── HELP-US-OUT.txt
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── less
│ │ │ ├── animated.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ └── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── javascript
│ │ ├── html5shiv.3.7.2.min.js
│ │ ├── jquery.1.11.3.min.js
│ │ └── respind.1.4.2.min.js
│ └── jquery
│ └── js
│ └── 1.11.3.js
└── puyuetian_answerone
├── css
├── go.html
├── img
├── js
├── login.html
├── main.html
├── question.html
├── rank.html
└── tip.html
40 directories, 148 files
评论