Simply-Web framework

3 Docs

Introduction to Simply-Web framework

Last Updated: February 21, 2026

Getting Started with Simply-Web Simply-Web is a lightweight, in-development and fun framework built on top of PHP. I have made this in my spare time and run weird things on it. It is not meant to be used in production for security reasons – however if you are running a static web application (such as…

Into the basics

Last Updated: February 21, 2026

Requirements Download the project starter file. Installing this framework is easy. Like any other normal and standard PHP applications (WHMCS, MediaWiki etc) – we simply upload the files to the web directory. However, with Simply-Web, we only expose the public folder. This is for security purposes. As the remaining process are handling in the background…

Basic syntax

Last Updated: February 21, 2026

Templating Engine Templating engine is super easy to utilise. It uses include feature built into PHP itself. Simply get started by navigating to /resources/views/your-page.view.php Now create a new template at /resources/templates/template1.template.php, you can paste or write any HTML code into this template file. After this, head back to /resources/views/your-page.view.php, and include the following code inside…