PHP Basics: Variables

January 22, 2009 · Filed Under PHP · 1 Comment 

What’s a Variable?

A variable is a symbolic representation of a value such as integer, string, or function result. But as its name suggest, it can change over time or vary so that it can be used many times within a script.

Variables in PHP

In PHP, variable names are going to start with a “$” sign, then they are going to be followed by a letter or an underscore “_”. A variable name is case-sensitive and can contain letters, numbers, underscores, or dashes (a-z, A-Z, 0-9, _, or -), but no spaces otherwise PHP will think that it is a new entity.
Read more

PHP Basics: Syntax

January 16, 2009 · Filed Under PHP · 1 Comment 

About PHP:
PHP is a server side scripting language that does something in response to events unlike a programming language that can do things even when it’s not responding to events. JavaScript is an example of another popular scripting language but unlike JavaScript, PHP is going to run on the server side (Web Server) not on the client side (User Browser).
Read more

How to Install Apache, PHP, MySQL & phpMyAdmin for Vista

January 15, 2009 · Filed Under PHP, Web & Internet · Comment 

There is no doubt that PHP is one of the most popular web programming language, at least in the sense of being heavily used. The fact that it is so easy to code and deploy besides the natural attitude of its programmers who tend to be more open and pragmatic contributed a lot in its propagation unlike other programming languages witch have been (and continue to be) massively marketed.
Read more

Preparing for the Zend Certification

January 14, 2009 · Filed Under PHP · Comment 

I’ve been thinking about preparing for the Zend Certification since last year but never took it very seriously until yesterday when I decided that it’s time for me to make room for it. It seems like I’m having less and less time every single new day and If I don’t commit myself to it, It will never happen. Blogging about this experience is much better. I believe that when you share you goals & objectives with somebody, you’re more likely to accomplish them. if not I will be, may be, helping others doing it. that’s why I’m inviting everybody to share their knowledge, experiences and advices.
Read more