PHP desktop GUI framework with HTML5 Chrome/IE engine
PHP Desktop is an open source project founded by Czarek Tomczak in 2012 to provide a way for developing native desktop GUI applications using web technologies such as PHP, HTML5, JavaScript and SQLite. The development workflow you are used to while creating web applications remains the same. There is no new API/framework to learn. The process of turning an existing website into a desktop application is basically a matter of copying it to "phpdesktop/www/" directory.
In a certain sense phpdesktop acts as a PHP to EXE compiler. It embeds a web browser, a multithreaded web server and a PHP interpreter, all embedded into a single application. The web server embedded is Mongoose (the MIT-licensed version). Supported browsers are Internet Explorer and Google Chrome. The package with Chrome embedded has no external dependencies, everything is included in the phpdesktop binaries and works out of the box on a user's computer.
MEAN is an opinionated fullstack javascript framework - which simplifies and accelerates web application development.
Get MEAN by running...
$ sudo npm install -g mean-cli
$ mean init yourNewApp
MEAN stands for:
Read more at mean.io
Clear-Fix classes for fixing floating elements.
/* cf - Clearfix for floating elements */
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
The clearest way to express this would probably be to declare both routes:
$route['signup'] = "user/signup";
$route['signup/(:num)'] = "user/signup/$1";