/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
Print Page - New logo vote
Airline Mogul Forum
Airline Mogul => Airline Branding Center => Topic started by: Sean Patrick on September 10, 2011, 12:22:37 pm
-
I am having trouble with Choosing/Updating the logo for my airline. Knight Airlines. I have four choices thus far:
Number 1: http://i.imgur.com/YzGdv.jpg (http://i.imgur.com/YzGdv.jpg)
Number 2: http://i.imgur.com/HCUls.jpg (http://i.imgur.com/HCUls.jpg)
Number 3: http://i.imgur.com/JPszR.jpg (http://i.imgur.com/JPszR.jpg)
Number 4: You think my work is terrible or you have some spare time and enjoy making logos please submit yours (Must have a knight on the logo)
Thank you for reading look forward to hearing from people
-
I like the first one most. But next time, save your work as .png, that way you don't get those blurry edges.
-
4)
(http://dl.dropbox.com/u/13385764/knight.png)
I'm bored so here you go...
-
4a)
(http://i.imgur.com/vLBf4.png)
-
I like both of them thanks very much, I'll now have to decide. Thanks again.