Computer Science, asked by aishumahesh79, 8 months ago

Coding for php functionParameterized function (with 3 arguments)

Write a coding to display name age and address of 5 students​

Answers

Answered by hkdelavadiya
0

Answer:

PHP has over 1000 built-in functions that can be called directly, from within a script, to perform a specific task.

Please check out our PHP reference for a complete overview of the PHP built-in functions.

PHP User Defined Functions

Besides the built-in PHP functions, it is possible to create your own functions.

A function is a block of statements that can be used repeatedly in a program.

A function will not execute automatically when a page loads.

A function will be executed by a call to the function.

Create a User Defined Function in PHP

A user-defined function declaration starts with the word function:

Syntax

function functionName() {

code to be executed;

}

Explanation:

I hope it is helpful to you

please mark as brainlist

Similar questions