├── LICENSE ├── README.md ├── conf └── db.ini ├── htdocs ├── add_article.html ├── add_article_submit.php ├── get_article.php └── index.php └── res └── layout ├── get_article.html ├── index.html └── notice.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/README.md -------------------------------------------------------------------------------- /conf/db.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/conf/db.ini -------------------------------------------------------------------------------- /htdocs/add_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/htdocs/add_article.html -------------------------------------------------------------------------------- /htdocs/add_article_submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/htdocs/add_article_submit.php -------------------------------------------------------------------------------- /htdocs/get_article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/htdocs/get_article.php -------------------------------------------------------------------------------- /htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/htdocs/index.php -------------------------------------------------------------------------------- /res/layout/get_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/res/layout/get_article.html -------------------------------------------------------------------------------- /res/layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/res/layout/index.html -------------------------------------------------------------------------------- /res/layout/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/phbook/HEAD/res/layout/notice.html --------------------------------------------------------------------------------