BeerOclock Posted June 2, 2009 Share Posted June 2, 2009 Ive recently been discovering the power of jQuery in my javascript projects, and I'm wondering if there is a similar framework/library for PHP. I keep hearing about Zend but I'm not 100% sure if its what I think it is. What I like about jQuery is that its a simple file you put on your server and it gets downloaded and executed on the client. Is the Zend framework like that? Or is it something that needs to be installed on the server. In other words you need to find a host that officially supports the zend framework. Because that would suck. Assuming thats the case, are there any other PHP frameworks that are basically just libraries that you can stick on your host without them having to actually install or officially support ? Quote Link to comment https://forums.phpfreaks.com/topic/160715-noob-zend-questions/ Share on other sites More sharing options...
gizmola Posted June 2, 2009 Share Posted June 2, 2009 There's no comparison. Javascript runs on the client. jQuery is a great javascript client library that makes all sorts of neat clientside tricks possible. PHP by comparison is a server side language. PHP code resides on the server, and runs on it. It's goal is work with the webserver to accomplish things programmatically and pass web pages back to the client. These pages can certainly include javascript and often do. ZF is an application framework and library for PHP version 5 that includes all sorts of goodness to help developers create their PHP applications. They even include integration that makes using jQuery in your applications easy to accomplish. One of the often mentioned benefits of a framework is that it implements proven design patterns like MVC, which can make your application more reliable, secure and easy to maintain and extend. Quote Link to comment https://forums.phpfreaks.com/topic/160715-noob-zend-questions/#findComment-848171 Share on other sites More sharing options...
akitchin Posted June 2, 2009 Share Posted June 2, 2009 as for finding a host that installs or officially supports it, this isn't necessary. the functionality may be slightly restricted on certain hosts depending on what extensions are or aren't installed along with the PHP installation, but the framework itself is installed simply by unzipping a set of files onto the server (followed by some fiddling to suit your individual environment). Quote Link to comment https://forums.phpfreaks.com/topic/160715-noob-zend-questions/#findComment-848177 Share on other sites More sharing options...
lostnucleus Posted June 9, 2009 Share Posted June 9, 2009 anyway , zend emphasize on using DOJO rather than jquery .............also i am quite opposite of you , as I know lotz abt zf but a complete noob of jquery, wat book/tutorials/matter wd you recommed to startup with jquery ?? Quote Link to comment https://forums.phpfreaks.com/topic/160715-noob-zend-questions/#findComment-852517 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.