This is a brief description of what the Zend framework is, its uses what advantages you ought to gain when using this framework when creating web apps and services.
A brief tutorial on how to set up the Zend framework and using it with Netbeans IDE.
Hiding url parameters from the address bar can help your websites, or apps in a lot of ways. One of the aspects of its necessity is about of security. It's also optimizing your url for search engines which might improve your site's ranking. Zend Routes provides such a mechanism for creating such urls with ease
The Zend framework provides a great way to create forms by just using OOP. Each element is an object in the form object that's translated into its HTML element. If you're using this for the first time it can be quite confusing. Adding special attributes can result into errors, or can cause the form to not behave in a way intended. Styling forms in Zend can also be quite cumbersome too. In this post we are going to be using the Zend_Form object and handling styling the traditional away
In this post we are going to be carrying from the previous example in when we created and designed our treeview. Now we are going to be implementing some server side code using PHP (A bunch of scripts referenced using AJAX) and generating JSON results.
We will creating a simple class in PHP for cropping an images
This is the first post (out of two) to our connecting to a Microsoft Access Database tutorials. We are going to be configuring PHP and Apache to load/enable ODBC extension to PDO. Ultimately, we will successfully connect, read, update, or delete records inside the Database using PHP
Now that we've successfully loaded ODBC, all that we have to do now create and establish a connection to our Microsoft Access Database and perform CRUD operations on it using PHP.
Uploading files via AJAX has never been easy....well....not until now. With the help of HTML5 we can now upload such files in the background and report data such as progress to the client browser