A simple MVC framework using jQuery Mobile. Current Features: MVC Architecture Simple Database (MySQL) and Authentication Classes Custom routing for clean URLs Apache (.htaccess), NGINX and Lighttpd support Configuration: ... // Be sure to set these! define("BASE_URL","http://localhost/jqmobile/"); define("COOKIE_DOMAIN","localhost"); // Database Config $database = array ( "user" => "root", "pass" => "", "host" => "localhost", "dbname" ...
A simple MVC framework using jQuery Mobile.
Current Features:
- MVC Architecture
- Simple Database (MySQL) and Authentication Classes
- Custom routing for clean URLs
- Apache (.htaccess), NGINX and Lighttpd support
Configuration:
...
// Be sure to set these!
define("BASE_URL","http://localhost/jqmobile/");
define("COOKIE_DOMAIN","localhost");
// Database Config
$database = array (
"user" => "root",
"pass" => "",
"host" => "localhost",
"dbname" => "jqmobile"
);
...
Source
http://devgrow.com/jquery-mobile-php-mvc-framework/
Demo
http://demos.devgrow.com/jquery-mobile-mvc/
Previous:
Animated Form Switching with jQuery
Animated Form Switching with jQuery
