Xenous
o shi
- Nov 15, 2011
- 383
- 101
I've recently gotten back into to PHP and decided to try and make a framework, it's pretty basic and doesn't offer to much in the way of features etc. But it should be good for learning.
It uses PDO for database access and RainTPL for templating.
Ps. Let me know if anything needs fixing or if I've missed anything.
Requirements:
MySQL
PHP 5.3 + (I think)
Xampp (not sure if it will work on iis)
How to set up:
1. Make database and run the query below.
2. Configure the rest in config.ini
3. It should work now!
Don't trust, don't download!
[SQL Query for Helpers table]
[Screenshots]
It uses PDO for database access and RainTPL for templating.
Ps. Let me know if anything needs fixing or if I've missed anything.
Requirements:
MySQL
PHP 5.3 + (I think)
Xampp (not sure if it will work on iis)
How to set up:
1. Make database and run the query below.
2. Configure the rest in config.ini
3. It should work now!
Don't trust, don't download!
You must be registered for see links
[SQL Query for Helpers table]
Code:
--
-- Table structure for table `helpers`
--
DROP TABLE IF EXISTS `helpers`;
CREATE TABLE IF NOT EXISTS `helpers` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`helper_name` text NOT NULL,
`helper_class_name` text NOT NULL,
`helper_file_name` text NOT NULL,
`helper_target_file` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
[Screenshots]