if($rwr && $url) {
if(!filter_var($url, FILTER_VALIDATE_URL)) {
print "Sorry, that does not appear to be a valid url.
";
}
else {
include('common.php');
$tiny = getTinyUrl($url, $embed);
$msg = $embed? "& your message are now at" : "is now";
print "";
}
}
else {
print "A better url shortener
";
}
?>