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.
- Host: GitHub
- URL: https://github.com/codeadamca/php-cms
- Owner: codeadamca
- Created: 2020-11-25T03:44:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:09:16.000Z (5 months ago)
- Last Synced: 2025-03-31T07:18:44.190Z (3 months ago)
- Topics: cms, php
- Language: PHP
- Homepage:
- Size: 86.9 KB
- Stars: 1
- Watchers: 1
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)