- 1
Functions
I have an exam coming up on Monday on function I needed someone to help me with some basic function coding example or program so I can study
1 Respuesta
+ 1
A function is basically just a block of code that only gets executed when it is called
function Hello(){
echo "say hi"}
This code will only say hi until I call that function
Hello();