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 to enable parsing?
What is isset in php?
How to select a database?
What is sql injection in php?
What are the different types of PHP arrays?
What are the main error types in php?
Does php 5 support exceptions?
What does php do?
What is the correct and the most two common way to start and finish a php block of code?
Define soundex()?
Explain what is the difference between mysql_fetch_array() and mysql_fetch_assoc()?
What is php artisan tinker?
What is the delimiter syntax is PHP's default delimiter syntax
What are form input html tags?
What is purpose of @ in Php?