Answer Posted / nagaraju.ch
A function is a block of statement, A function will not execute immediately when we run, we have to call the function to execute
example
<?php
function name(){ // for creating a function
echo "My name is -----";
}
name(); // calling the function
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How can you make a connection with mysql server using php?
What is the meaning of "enctype= multipart/form-data" ?
How many open modes available when a file open in PHP?
How can we submit form without a submit button?
What is difference between web service and api?
What is array function in javascript?
What is session and why do we use it?
What is a php 5?
Does php support multiple inheritance?
How to support multiple-page forms?
How to check if a string contains a character or word in php?
Describe the security vulnerability of PHP?
Is php a web server?
How to remove an empty directory?
What does $_cookie mean?