Hi all,
I'm a newbie in this forum.
I'm going to start developing a web platform and I don't want to realize static html pages generated from PHP. I'd like to introduce graphics improvements with the use of an ajax library, especially with regard to data entry (e.g. validation, data lookups, table filtering).
In my company, we developed a framework to dinamically generate html tables and forms in order to visualize, insert and edit data. An example:
$form = new HtmlForm();
$form->addText('username');
$form->addCheckbox('agree');
$form->addButton('OK');
$form->generate();
So I'm looking for a library integrated with PHP that makes me construct user interface directly from PHP (before "reinvent the wheel" coding new classes).
Any suggestions?
Thanks in advance.
Alberto