How to uppercase first letter in each word

php function  ucfirst();

how to copy files in php - the copy() function

copy(”originalfile.php”, “newfile.php”);

Ecommerce Web Site Solutions

Global Link technologies has extensive experience is developing ecommerce web sites for small to medium size businesses from a few products to thousands. The ecommerce solutions we develop are customized in design and optimized for search engines.
Read more about our Ecommerce Website Development

An Introduction to CakePHP

CAKEPHP is a rapid development framework that allows web developers to quickly develop a website using Cakes resources that are already provided. CakePHP uses the MVC structure or Model View Controller architecture to structure a website.
Model has to do with interacting with the database; View handles the web page layout and design of your website, [...]

How to run PHP as a shell scripting language

PHP is very popular as a web server scripting language. It can also be very valuable as a shell script being run from a Command Line Interface or CLI. PHP CLI is growing in popularity especially since there is little change to your script when you want to run it from a Unix or Linux [...]

PHP functions - returning values

All functions in PHP return some value. However, many functions do not contain the keyword return. Most functions that do not have the keyword return in it, usually return an integer value of either 1 or 0. 1 indicates success or true and 0 indicates failure or false.

Basic terms in Object Oriented PHP

In PHP, an object is a container or bundle of functions and data.
A class is the template or blue print for all objects that are created from it.
An object created from the class is called an instance of the class.
A php function inside an object is called method or a member function.
A member variable in [...]