<? $a="Some text"; $i=0; while ($i<10000){ echo "$a"; $i++; } ?>
<? $a="Some text"; $b="Second Text"; $i=0; while ($i<10000){ echo "$a"; echo "$b"; $i++; } ?>