Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
[PHP] MewFramework [/PHP]
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Xenous" data-source="post: 207357" data-attributes="member: 9187"><p>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.</p><p>It uses PDO for database access and RainTPL for templating.</p><p><em>Ps. Let me know if anything needs fixing or if I've missed anything.</em></p><p><strong>Requirements:</strong></p><p>MySQL</p><p>PHP 5.3 + (I think)</p><p>Xampp (not sure if it will work on iis)</p><p> </p><p><strong>How to set up:</strong></p><p>1. Make database and run the query below.</p><p>2. Configure the rest in config.ini</p><p>3. It should work now! </p><p> </p><p><strong>Don't trust, don't download!</strong></p><p><a href="http://sharefa.st/view/8pXaJwhhQgu0" target="_blank">http://sharefa.st/view/8pXaJwhhQgu0</a></p><p> </p><p>[SQL Query for Helpers table]</p><p>[CODE]--</p><p>-- Table structure for table `helpers`</p><p>--</p><p> </p><p>DROP TABLE IF EXISTS `helpers`;</p><p>CREATE TABLE IF NOT EXISTS `helpers` (</p><p> `id` int(255) NOT NULL AUTO_INCREMENT,</p><p> `helper_name` text NOT NULL,</p><p> `helper_class_name` text NOT NULL,</p><p> `helper_file_name` text NOT NULL,</p><p> `helper_target_file` text NOT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;[/CODE]</p><p> </p><p>[Screenshots]</p><p><img src="http://i.imgur.com/qa1QjNw.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /><img src="http://i.imgur.com/8d2YJWQ.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /><img src="http://i.imgur.com/KT87DlG.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p></blockquote><p></p>
[QUOTE="Xenous, post: 207357, member: 9187"] 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. [I]Ps. Let me know if anything needs fixing or if I've missed anything.[/I] [B]Requirements:[/B] MySQL PHP 5.3 + (I think) Xampp (not sure if it will work on iis) [B]How to set up:[/B] 1. Make database and run the query below. 2. Configure the rest in config.ini 3. It should work now! [B]Don't trust, don't download![/B] [URL]http://sharefa.st/view/8pXaJwhhQgu0[/URL] [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 ;[/CODE] [Screenshots] [IMG]http://i.imgur.com/qa1QjNw.png[/IMG][IMG]http://i.imgur.com/8d2YJWQ.png[/IMG][IMG]http://i.imgur.com/KT87DlG.png[/IMG] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
[PHP] MewFramework [/PHP]
Top