How it works RMScore is very simple. Look! All of links look like: ?page=controller.template If you need to make some action (POST): ?page=name_of_your_controller.name_of_your_template&module=name_of_your_module&action=action All of your controllers are in "controller/" + name of your controller All of your templates are in "pages/name_of_your_controller/" + name of your template All of your modules to some actions are in "modules/name_of_your_module.php" All of your functions are in "func.php" All of your class in "lib/" Models This is two default models: default,admin Model it is a view for some user group You can create some models with different view. Every model have a their header and footer, where you can connect different css and js. default view always working when user is not logged in. Also You can switch models by host, in admin panel. Api2 All of api working by simple rules at the WEB and at the Cordova it will works like that: it will load class somestatementApiClass.php from 'controller/api2/' it will execute method somemethod(somedata) with data in somedata if somemethod will return something, it will be sended as array to myFunc; Security: apiEngine.js work by tokens. Tokens generating on each pages, while you load it by PHP. Controllers: you can create some controller in 'controller'. We prefer you to use "if ($_GET['page'] == 'controller.template'){}" filters in your code. While you building your app, use the $data[] array to make some content on your pages. Templates: templates working by clean HTML. Placeholders looking like "::placeholder" where placeholder is a key of some element of $data array. It may looks like this -----------controller---------- if ($_GET['page'] == 'controller.template') { $data['myheader'] = 'this is my header'; } -----------/controller---------- -----------template----------

::myheader

-----------/template---------- it will look on your page like this:

this is my header

Mysql All of mysql in RMScore working on safeMySql. You can read the readme to know about this.