Quote:
Originally Posted by Jaysin
make a form, and put a textarea into it, and name it "batchurl" then make encode.php and put this in it
PHP Code:
<?php
if($_POST['batchurl'] == true)
{
$newline = explode("\n", $_POST['batchurl']);
foreach($newline as $url)
{
echo urlencode($url) . "<br />\n";
}
}
?>
make sure to make the form a POST not a GET and then just use the form to execute encode.php
|
Thanks a million I owe you one!