(10-13-2009, 08:45 PM)Omniscient Wrote: Do you mean a wysiwyg Ninjageek?
And maybe you can give me a better example. I think I understand what your saying but that's not really a great project imho. It's interesting but application for use would be small and still complex.
No not a application, just a simple single class file (like jQuery) then for example
PHP Code:
require "html.php"
$html = new HTML;
print $html->header("Title", "style", "script", ...);
print $html->divider("Content", "ID", ...);
It would be used to short time used to write valid html codes for use within a php project
The above script would then be like
PHP Code:
print <<<HTML
<html>
<head><title>Title</title>
</head>
HTML;
Well it's just my tought