In the forum, you should post what the exact "something" is. Also, if you're using "id=", then the variable name you should be using is $id and not $urls.
Given this: http://domain.com/alabala/tralala.php?id=something, then it would go something like so:
if(isset($_POST['Save']))
{
import_request_variables('PG');
echo $id;
$urls = explode("\n", $id);
echo '<pre>', print_r($urls, TRUE), '</pre>';
die();
}
EDIT:
I forgot to put the "G" in the import_request_variables() function. When you have stuff coming through the URL, they will be in $GET and not $POST.
Anyway, it's not a good idea to post long URL data, especially with carriage returns/newlines in them. If you insist on doing it, then you should look into using urlencode() and urldecode() functions.