Posts tagged functions

The following posts are tagged functions.

Custom PHP functions

As I’d promised, today I’ll teach you how to create your own functions to assist you in your programming. It’s pretty simple, but some people might not be able to grasp the concept so I’ll try to make things clear for everyone On to the tutorial! No comments. Read the complete post »


PHP functions

Today we’re going to look at what most programmers call functions. A function is what you call in your program to tell it to perform a series of smaller actions, like echo(), substr(), mysql_query(), or your very own functions like calculate_age() or bake_cookies() (which we will learn how to create in the next tutorial). I’ll [...] No comments. Read the complete post »