AwesomeFramework

AwesomeFramework is PHP application framework of an extremely simple Plain Old PHP File base.

* PHP4, PHP5 compatible! (maybe PHP3, PHP6 also...).
AwesomeFramework never deserts PHP4.

AwesomeFrameworkは昔ながらのPHPファイルベースのWebアプリケーションフレームワークです。

※PHP4, PHP5*ちらでも動作します。(そしておそらくPHP3やPHP6でも・・・)
AwesomeFrameworkは決してPHP4を見捨てません。

Examples

action(default.php):
<?php
assign('hello', 'Hello World!!!');
assign('users', array('1' => 'God', '2' => 'Kain', '3' => 'Me'));
assign('user_id', 2);
return 'view';
?>
view(view.php):
<html>
<head><title><?= fetch('title') ?></title></head>
<body>
<h1><?= fetch('title') ?></h1>
<p><?= $hello ?></p>
<form>
<select name="foo">
<?= html_options($users, $user_id) ?>
</select>
</form>
</body>
</html>
result(index.php?p=default):
<html>
<head><title>Hello World!!!
</title></head>
<body>
<h1>Hello World!!!
</h1>
<p>Hello World!!!</p>
<form>
<select name="foo">
<option value="1">God</option>
<option value="2" selected="selected">Kain</option>
<option value="3">Me</option>
</select>
</form>
</body>
</html>

Enterprises License

AwesomeFramewrok is open source software. The support with mail can be received by buying the Enterprises license. (Once you get license, please ask from the mail address used for purchase to the mail address for the support. )

Please input any price that you think that it’s worth to the following form and push the donation button.

The donation will be used not only supporting you but also surviving the project. (Help your friends at komagata.org survive the first coming summers)

AwesomeFramewrokはオープンソースソフトウェアです。しかしエンタープライズライセンスを購入することでメールでのサポートを受けることが出来ます。(購入に使用したメールアドレスから下記のサポート用メールアドレスにお問い合わせください)

下記フォームに自由な金額を入力して寄付ボタンを押してください。

サポート以外にも当プロジェクトの存続のためにも利用されます。(私達がサバイバルするためです)

Support

Download

AwesomeFramework v0.10.0