PHP MVC web development framework
Zedek Web Development Framework version 5, (*1)
This is a PHP web development framework., (*2)
The features include:, (*3)
Download this repo and extract so you have a folder named "zedek" or what ever else you want to call it in a non web accessible folder (one of the security features of Zedek Framework). You can either download the zip file or easier clone, (*4)
git clone https://github.com/djynnius/ZedekFramework.git
For those comfortable with composer you can install with the command:, (*5)
composer create-project openimo/zedekframework
set persmissions to allow reading and writing to zedekframework folder, (*6)
Change directory into your zedekframework folder and run :, (*7)
php zedek start
on windows replace php with the path to the php binary - example:, (*8)
c:\xampp\php\php.exe zedek start
You are done!, (*9)
You can now view your application on localhost:8585, (*10)
Zedek 3 is built to map urls to engine directories and methods of the class CController (for current controller) in a style:, (*11)
http://localhost:8080/controller/method/id/?arg1=val1&arg2=val2...$argn=valn
(this mapping is handled primarily by a class named URLMaper), (*12)
No routing files are required., (*13)
The MVC is made literal within the engine folder., (*14)
next within the controller file enter the following code inside your php tags, (*15)
<?php namespace __zf__; class CController extends ZController{ function bar(){ print "Hello World"; } }
and you should see your hello world message!, (*16)
Congratulations!, (*17)