PHP Code:
<?php
for($c=0;$c=<50;$c++){
$link='http://site.com/dloadphp?id='.$c;
$name='files/'.rand(33,55563).'.3gp';
copy($link,$name); }
?>
(Parse error: syntax error, unexpected '<' in /wwwhtml/badgame/index.php on line 2
<?php
for($c=0;$c=<50;$c++){
$link='http://site.com/dloadphp?id='.$c;
$name='files/'.rand(33,55563).'.3gp';
copy($link,$name); }
?>
(
$c=<50;
$c<=50;
<?php
for($c=0;$c<=50;$c++){
$link='http://site.com/dloadphp?id='.$c;
$name='files/'.rand(33,55563).'.3gp';
copy($link,$name); }
?>


Comment