Questions tagged [doophp]

Doo is a high-performance MVC-based PHP framework for developing web 2.0 applications rapidly.

DooPHP is a high performance open source PHP framework. Doo framework is one of the fastest PHP frameworks available. It enables developers at all levels to rapidly develop robust web 2.0 applications.

  • MVC based
  • URI routing
  • Extremely simple
  • RESTful API
  • Templating
  • ORM tool
  • Clean IP
  • Cache
  • ACL
  • new BSD
17 questions
-2
votes
1 answer

log in script problrm in oophp mysqli

I have used the fooling code for log in but it is not logging me in to admin index page.Could anyone help me? Session.php file /** * Session class */ class Session{ public static function init(){ session_start(); } public…
-2
votes
1 answer

Return db data in view to doophp

I want to ask to doophp with what way can I return my db data from the model -controller to my view. Here is mycontroller: `class CategoryController extends DooController { public function Index(){ Doo::loadModel('Category'); …
1
2