Question: How Many Questions for any Prospective Hosting Provider ?
A
B
C
D
Seven
B
Six
C
Eight
D
Five
Note: Not available
function my_function(){
static $count=1;
$count++;
echo $count;
echo "<br/>";
}
my_function();
my_function();
my_function();
What will be the correct out of the above static syntax?