Functions Advanced - English

11141 visits



Outline:

Functions (Advanced) We can also pass parameters to functions during both the declaration and calling time. function functionName($param1,$param2); //during function call. function functionName($param1,$param2) { code to be executed }