Is there any ajax library integrated with PHP?

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
alberto.zanon
Forum Newbie
Posts: 1
Joined: Mon Sep 29, 2008 9:23 am

Is there any ajax library integrated with PHP?

Post by alberto.zanon »

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');

So I'm looking for a library integrated with PHP that makes me construct user interface directly from PHP (before "reinvent the wheel").

Any suggestions?

Thanks in advance.
Alberto
User avatar
jaoudestudios
DevNet Resident
Posts: 1483
Joined: Wed Jun 18, 2008 8:32 am
Location: Surrey

Re: Is there any ajax library integrated with PHP?

Post by jaoudestudios »

For ajax I would use Jquery, it will easily integrate with your php and will downgrade gracefully if someone does not have javascript on
Post Reply