what is the correct way to create a function in php?
Answers
Answered by
1
Answer:
function name must start with a letter or an underscore. Function names are NOT case-sensitive. Tip: Give the function a name that reflects what the function does!
Explanation:
pls mark me as a brainlist
Answered by
1
function sayHello() {
echo "Hello world!";
}
Similar questions