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 |
When do sessions end?
What is regular expression in javascript?
Is md5() is breakable if yes than how?
How can we submit from without a submit button?
What are the differences between session and cookie?
How do you destroy a particular or all Sessions?
List some features of php that are deprecated in php
What is polymorphism in php?
What is design pattern? Explain all including singleton pattern?
what is the maximum size of databasi in mysql?
What the use of var_dump()?
What is the correct and the most two common way to start and finish a php block of code?