1 2 3 4 5 6 7 8 9 10
<?php error_reporting(0); $message = "echo \"hey\n\";"; for ($i=0; $i<10; $i++) { eval($message); echo $i."\n"; }