I’m creating a small Web-Application with PHP, JavaScript, Ajax and of course HTML and CSS (and a bit jQuery).
Is there a Design Pattern which you recommend?
I know MVC, but only in Java, C++.
I’m just starting with PHP and JavaScript, and search for a source which can tell me how to use these languages correctly (in form of how they should interact with each other)
My Idea is to use PHP only for DB connects and store all data “locally” in JavaScript vars, and work with them.
So, my questions:
- Are there any Frameworks (should be very small, i want to code most
of the functions on my own)- Is there a book/website which can train me to do it the right way? (or do you have any links?)
There are lot of web application frameworks in
PHPout of which few are really famous in development world.cakephp http://cakephp.org/
codeigniter http://codeigniter.com/
Both of them has rich support for MVC pattern and almost similar to
springandstrutsinjavaworld.