Functions Advanced - English

11146 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 }