i wrote the basics can any make it so it like u define the number in brackets "[1-10]" so its imagesgrabber.php?uri=someothersite.com/images/something[1-25].jpg
instead of script.php?txt=siteurl.com/%i.jpg
PHP Code:
<html>
<head>
<title>PHP</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
$file_name = $_GET['uri'];
$temp = "";
for($i =0; $i < 70; $i++)
{
$temp = str_replace("%i", $i, $file_name);
echo "<a href=\"$temp\" target=\"_blank\"><img src=\"$temp\" border=\"0\"></a>\n";
}
?>
</body>
</html>
so the varible in "[ ]" can be defined instead of
PHP Code:
for($i =0; $i < 70; $i++)