04-21-2008, 07:13 AM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Location: Netherlands
Posts: 104
Thanks: 9
|
PHP Code:
<?php
function rep_eval($str) { $f = fopen('./tmp.php', 'w'); fwrite($f, '<?php '. $str . ' ?>'); fclose($f); require './tmp.php'; unlink('./tmp.php'); }
rep_eval(' $i = 0; for($v = $i;$v < 100;++$v){ echo($v); } '); ?>
|
|
|
|