Using staticize plugin:
PHP code:
<?php
$n = 0;
while($n < 100) {
echo("$n ");
$n++;
}
?>
Does this:
< ?php
$n = 0;
while($n < 100) {
echo("$n ");
$n++;
}
?>
Weee!
Link to share this: https://gabrielserafini.com/blog/2005/03/31/hello-world-with-php-staticize/