|
Posted by Max72 on 04/12/06 19:23
Green Orange is a community of developers who love PHP. We are
currently developing an exciting project called Green Orange Framework.
GOF (Green Orange Framework) was born from an idea to use a browser as
a development environment to build stand-alone applications for the
web.
Web projects are built using PHP programming language incorporating a
complete collection of classes, organized in levels and families
(packages).
Green Orange allows you to code sites using OOP practices.
Further, Green Orange is the first PHP development environment that
uses a graphic user interface (GUI) to easily and quickly build a site
within your browser.
The framework and the whole visual development environment is licensed
under GPL, therefore it completely free.
Our framework is your framework so we invite you to use it, spread it,
expand it, and to report every possible bug to us, with the goal to
improve and share it with the whole community when it is completed.
Come and join us...
http://www.greenorange.org
<?php
require_once("require_once.php");
loadControl(_C_DOCUMENT);
$document = new Document();
$title = new Tag(_H_TITLE);
$title->setTagValue("My first example");
$document->setHead($title);
$document->render();
?>
Navigation:
[Reply to this message]
|