View Single Post
Old 10-15-2007, 08:19 PM  
Bro Media - BANNED FOR LIFE
MOBILE PORN: IMOBILEPORN
 
Join Date: Jan 2004
Location: Tinseltown NL
Posts: 16,502
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
Bro Media - BANNED FOR LIFE is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote