0
jqmPhp version 0.01
jqmPhp is a package of PHP classes that facilitates the creation HTML files for use with jQuery Mobile Framework. All classes in the jqmPhp package can be converted to string and printed with an echo function.
echo(new jqmPhp());
Minimal Example
Make your first application with jqmPhp:
<?php include 'lib/jqmPhp.php'; $j = new jqmPhp(); $j->addBasicPage('', 'Hello World', 'It\'s works!'); echo $j; ?>