Categories
Tutorials Video Tutorials

Best Composer Tutorial, So Far

I have spent a lot of time looking for tutorials about Composer, and most of them concentrate only in how to install and the basic usage of the dependency manager frameworks. Which is something you find on the Composer official web site. This represent a problem if you want to use your own custom private […]

Categories
Tips Tutorials

Handling a Keyword Search with PHP/MySQL (MATCH/AGAINST MySQL Function)

For the longest time I used the MySQL ‘LIKE’ statement style for searching by keywords, which it is probably the most reliable and fastest option. But today I’m going to talk about another option you have to create a more effective keyword search and get the result from MySQL order by keywords relevance. For this […]

Categories
Tips Tutorials

How to Avoid Having Sensitive Data Exposed

There are few reasons why you have to have sensitive information inside a class, but the one in the top of these reasons is because many hosting services does not allow you to have access to your root folder or even to your php.ini file. This is a big problem specially if you have a […]

Categories
Tutorials Video Tutorials

How to Create a PHP Class

PHP is shifting into a mayor coding method, from procedural scripting to object oriented scripting, Class is one of the most important aspect your need to learn to take advantage of this shifting. PHP is not the same as it was before since PHP 4+. Resource: Hello World Class Over the years I found myself […]

Categories
Tutorials

Browscap.php – how to use it!

The Browscap.php is a powerful code but it has some minor things easy to fix in order to work properly with your PHP5 scripting.

Categories
Resources Tips Tutorials

Installing Apache, PHP and MySQL in Ubuntu 12.10

Preparing your new Ubuntu 12.10 computer for web developing can be intimidating, especially if you are not used to Ubuntu or Linux environment, as I am. There’s a lot of help from the community but sometimes they are kind of rough when someone like me ask a noob question, but hey!… at least they answer […]

Categories
App Reviews Resources Tips

The Best Free Design Software in the Web.

Start designing can be a little hassle, specially for students. Of course, the cost for an Art certifications are way over prized in the US. For example, an Associate Degree in Full Sail, Florida – Maybe the best option if you want to have hands on into new technology, can cost $80,000.00. If you don’t […]

Categories
Tutorials

Controlling How Your Variables Are Handled In a PHP Class

There are many ways that you can control how variables are accessed in your Class. The most common is using Constants but the problem is that constants are public an can be accessed using: echo FOO::CONSTANT; Let say you want to have more control of your variables. One way you can do this is a […]

Categories
Tutorials

Data Injection

Database Injection alert has become a pain in the back lately, after the resent SQL injection against MySQL main website, I start researching about Data Injection myself and I found a lot information that might be helpful for many my fellow designers and coders. What’s A Data Injection? If it’s the first time you heard about […]

Categories
Tips Tutorials

Setting Up ImageMagick 6.7.4.6 Q16 in Windows Vista x64 SP2 with IIS7 and PHP 5.3 Imagick Extension

Wow, I’ve been trying to do this for almost a week and a half and finally I got it. I Google it!, StackOver it and nothing gave me to possibilities to have my localhost Windows Vista IIS7 with the latest ImageMagick Q16 and PHP extension working properly. But know I have my IIS7 PHP running […]