An open API service indexing awesome lists of open source software.

https://github.com/codeadamca/php-cms

A basic vanilla PHP CMS.
https://github.com/codeadamca/php-cms

cms php

Last synced: about 2 months ago
JSON representation

A basic vanilla PHP CMS.

Awesome Lists containing this project

README

        

# A Basic Vanilla PHP CMS

This repository is a simple PHP CMS meant to be used as a starting point. The code consists of a simple login process, a dashboard, a place to view/add/edit/delete users, and a place to view/add/edit/delete projects. In an effort to keep the PHP code focused and basic, only the absolute basics have been included. The whole CMS only consists of HTML, PHP, and SQL.

A few notes regarding the CMS:

- There is no form validation
- Security is very basic
- Image uploading is done through a separate page using a basic servers-side script
- Images are stored in the database as a base64 string
- Image resizing is done through [WideImage](http://wideimage.sourceforge.net/) (you'll need to add this to the includes folder)

> Full tutorial URL:
> https://codeadam.ca/learning/php-cms.html

***

## Repo Resources

* [Visual Studio Code](https://code.visualstudio.com/) or [Brackets](http://brackets.io/) (or any code editor)
* [Filezilla](https://filezilla-project.org/) (or any FTP program)