Mcloide's resources library

All about PHP, Javascript, concepts and development

Posts Tagged ‘tutorial’

Working with Google Charts and Visualization API

Posted by mcloide on November 9, 2009

Julian has just added a post with a good tutorial of how to use the Google Charts and Visualization API.

Check it out: aHref: Working with Google Charts and Visualization API

Posted in development, google | Tagged: , , , | Leave a Comment »

Advanced Photoshop Techniques that you might not be aware of

Posted by mcloide on October 28, 2009

Got this from a Tweet of 99Designs. Good tutorial.

Follow the link: http://inspectelement.com/tutorials/advanced-photoshop-techniques-that-you-may-not-be-aware-of/

Posted in PHP | Tagged: , , , | Leave a Comment »

40+ Best Photoshop Tutorials for creating buttons

Posted by mcloide on September 29, 2009

Awesome tutorial – @Ronald Bien – with 40 excellent examples to create Photoshop buttons of all kinds:

Follow the link: 40+ Photoshop Tutorials For Creating Buttons

Posted in photoshop, resources | Tagged: , , | Leave a Comment »

Zend Framework Form Decorators

Posted by mcloide on August 6, 2009

Decorated Zend Form

This is a great tutorial about using the Zend Framework Form Decorators to construct the form in the way that you want them to be.

It’s a very detailed step by step tutorial and an excellent resource.

Check it out at ZendGeek July post : Zend Form Decorators

Posted in PHP, Zend, development, resources | Tagged: , , , , | Leave a Comment »

Zend Framework Quickstart Review

Posted by mcloide on March 22, 2009

I have done a ton of work with ZF, but trully haven’t done a full aplication with MVC (as it should be) and today I have finally done the quickstart tutorial from Zend Framework.

It took me more than the half hour said on the tutorial, but that is because I have choosen to create directory by directory and file by file.

The tutorial is very straight forward, but if you follow the tutorial 100% as it should, you will face a couple of walls that you must bypass to continue.

The first big wall is the directory strucutre convention for the files. Check that very closely because if any file is out of place it will throw an error.

The second, and most anoying one, is the database issue. During the tutorial you will be requested to create a database using some scripts and, as you will see, the script does not create the databases specifieds on the ini file and also it does not say to you what are the logical file permissions. After doing some research I have found one good article that answer that all, so if you are facing these problems, check it out (Nabble Article Link).

Note: You must know how to run a PHP script from the command line to use this tutorial. If you are in Linux, just go to the directory requested (for the load.sqlite.php) and type php load.sqlite.php and it should run normally.

After the tutorial is complete you will see the MVC patter working as beautifully as it should, but the tutorial will not answer you all the questions, only will show you how everything works and for that you should use the Zend Framework Reference Guide.

Point is, if you have never worked with the Zend Framework and want to understand how everything works, the tutorial is a great way to start. It will help you to visualize what, where and how it works.

Posted in Database Related, PHP, Zend, development | Tagged: , , , , , | 2 Comments »

PHP5 DOM and SimpleXML

Posted by mcloide on September 5, 2008


No matter what kind of application I’m doing, there is always a XML request, insert or something involving XML. I have always used the SimpleXML method for that, for obvious reasons, but sometimes is good to have knowledge of both.

Digging up on the web I found out a IBM article giving an excellent overview of the 2 methods that PHP5 works with and how to make them both work together.

Take your time to read it. It’s worthed: XML for PHP Developers Part 1

Posted in PHP, Zend, development | Tagged: , , , , , | Leave a Comment »