├── README.md ├── admin ├── create_post.php ├── dashboard.php ├── includes │ ├── admin_functions.php │ ├── head_section.php │ ├── menu.php │ ├── navbar.php │ └── post_functions.php ├── posts.php ├── topics.php └── users.php ├── complete-blog-php.sql ├── config.php ├── filtered_posts.php ├── includes ├── banner.php ├── errors.php ├── footer.php ├── head_section.php ├── messages.php ├── navbar.php ├── public_functions.php ├── registration_login.php └── registration_login_by_user.php ├── index.php ├── login.php ├── logout.php ├── mail.php ├── register.php ├── single_post.php └── static ├── css ├── admin_styling.css └── public_styling.css └── images ├── Nokia_5.1_plus.jpg ├── banner.jpg └── iPhoneX-Svr.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/README.md -------------------------------------------------------------------------------- /admin/create_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/create_post.php -------------------------------------------------------------------------------- /admin/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/dashboard.php -------------------------------------------------------------------------------- /admin/includes/admin_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/includes/admin_functions.php -------------------------------------------------------------------------------- /admin/includes/head_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/includes/head_section.php -------------------------------------------------------------------------------- /admin/includes/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/includes/menu.php -------------------------------------------------------------------------------- /admin/includes/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/includes/navbar.php -------------------------------------------------------------------------------- /admin/includes/post_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/includes/post_functions.php -------------------------------------------------------------------------------- /admin/posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/posts.php -------------------------------------------------------------------------------- /admin/topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/topics.php -------------------------------------------------------------------------------- /admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/admin/users.php -------------------------------------------------------------------------------- /complete-blog-php.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/complete-blog-php.sql -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/config.php -------------------------------------------------------------------------------- /filtered_posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/filtered_posts.php -------------------------------------------------------------------------------- /includes/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/banner.php -------------------------------------------------------------------------------- /includes/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/errors.php -------------------------------------------------------------------------------- /includes/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/footer.php -------------------------------------------------------------------------------- /includes/head_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/head_section.php -------------------------------------------------------------------------------- /includes/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/messages.php -------------------------------------------------------------------------------- /includes/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/navbar.php -------------------------------------------------------------------------------- /includes/public_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/public_functions.php -------------------------------------------------------------------------------- /includes/registration_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/registration_login.php -------------------------------------------------------------------------------- /includes/registration_login_by_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/includes/registration_login_by_user.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/index.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/logout.php -------------------------------------------------------------------------------- /mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/mail.php -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/register.php -------------------------------------------------------------------------------- /single_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/single_post.php -------------------------------------------------------------------------------- /static/css/admin_styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/static/css/admin_styling.css -------------------------------------------------------------------------------- /static/css/public_styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/static/css/public_styling.css -------------------------------------------------------------------------------- /static/images/Nokia_5.1_plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/static/images/Nokia_5.1_plus.jpg -------------------------------------------------------------------------------- /static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/static/images/banner.jpg -------------------------------------------------------------------------------- /static/images/iPhoneX-Svr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkishan516/Complete-blog-php/HEAD/static/images/iPhoneX-Svr.png --------------------------------------------------------------------------------