Hello,

I'm new around here but I would just like to share with you something that I have recently created that I think will be of benefit to some php programmers.

Here's a list to the website:
http://raxanpdi.com/

It's an Rich Ajax Application Framework that's designed to make coding complex apps a whole lot easier

__
Raymond Irving

    Interesting Stuff, not sure I'd like to handle my JS in the PHP level but to each his own.
    Only critique is your simple "Hello World" example was not very simple at all, hard to beat

    <?PHP 
    echo "Hello World"; 
    ?>
    

      The truth is that for an extremely simple "Hello Word" all you have to do is to just simply write out the words "Hello word" and your done. But what if you later on wanted to do a little more than just to output a few lines of text? What if you wanted to create dynamic web pages with Ajax capabilities?

      With PDI you get the best of both worlds. You have the abilities to easily control the elements inside your client's web browser without having to write a single line of JavaScript. But if your feel the need to roll your own Javascript code, then you can do so and use the loadScript() or addScript() methods to embedded the scripts inside the web page.

        Write a Reply...