├── .gitignore ├── README.md ├── ajaxCall.html ├── ajaxCall.js ├── api ├── category │ ├── create.php │ ├── delete.php │ ├── read.php │ ├── read_single.php │ └── update.php └── post │ ├── create.php │ ├── delete.php │ ├── read.php │ ├── read_single.php │ └── update.php ├── config └── Database.php ├── models ├── Category.php └── Post.php └── myblog.sql /.gitignore: -------------------------------------------------------------------------------- 1 | jtest.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/README.md -------------------------------------------------------------------------------- /ajaxCall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/ajaxCall.html -------------------------------------------------------------------------------- /ajaxCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/ajaxCall.js -------------------------------------------------------------------------------- /api/category/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/category/create.php -------------------------------------------------------------------------------- /api/category/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/category/delete.php -------------------------------------------------------------------------------- /api/category/read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/category/read.php -------------------------------------------------------------------------------- /api/category/read_single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/category/read_single.php -------------------------------------------------------------------------------- /api/category/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/category/update.php -------------------------------------------------------------------------------- /api/post/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/post/create.php -------------------------------------------------------------------------------- /api/post/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/post/delete.php -------------------------------------------------------------------------------- /api/post/read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/post/read.php -------------------------------------------------------------------------------- /api/post/read_single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/post/read_single.php -------------------------------------------------------------------------------- /api/post/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/api/post/update.php -------------------------------------------------------------------------------- /config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/config/Database.php -------------------------------------------------------------------------------- /models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/models/Category.php -------------------------------------------------------------------------------- /models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/models/Post.php -------------------------------------------------------------------------------- /myblog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_rest_myblog/HEAD/myblog.sql --------------------------------------------------------------------------------