Whhat is a Functions
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 |
How does php and apache work?
How to define a function with any number of arguments?
Explain about getters and setters in php?
When you want to show some part of a text displayed on an html page in red font color? What different possibilities are there to do this? What are the advantages/disadvantages of these methods?
Tell me how is it possible to remove escape characters from a string?
How could I install codeignitor ?
What is a string in php?
How to increase the maximum execution time of a script in php?
Which is better mysql or sql?
What is the difference between overloading and overriding in php?
Which php framework is best for beginners?
What is mean by an associative array?