Question: How do you write in PHP?
A
B
C
D
write("text");
B
echo "text";
C
document.write("text");
D
print("text")
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?