xxxxxxxxxx
<!DOCTYPE html>
<html>
<body>
<h2><center>Just PHP Learning</center></h2> //Just put the text in center tags
<?php
function myTest() {
static $x = 0;
echo $x;
$x++;
}
myTest();
echo "<br>";
myTest();
echo "<br>";
myTest();
echo "<br>";
myTest();
?>
</body>
</html>