/*
* 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 - How do you put an image on your signature?
Airline Mogul Forum
Airline Mogul => General Chat => Topic started by: zvezdaman on August 27, 2007, 03:51:33 pm
-
I tried using bbcode with the IMG tags to put an image on my signature, but it wont show. this is the pic that I would like on my signature.
(http://img179.imageshack.us/my.php?image=asiwa7.jpg)
apparently it wont work...
-
Try the following link inside the [img] tags.
http://img179.imageshack.us/img179/8337/asiwa7.jpg
-
I DID IT w00t w00t w00t
wait...i meant YOU did it. thankyou x 4007
:shock: :shock: :shock: :shock: :shock: :shock: :shock: :shock: :shock: :shock: :shock: :wink:
-
Your welcome!
-
Sorry to ask again but how do I make this image show?
(http://img264.imageshack.us/my.php?image=theflyingfigdb8.png)
im confused why it wont work... :shock: :shock: :shock:
-
you need to put in the image tag... ie. the link to your album instead of "my.php" which you have on your link
-
You need to right click on it and get the link to the image there. But you cannot put an image that size into your signature as its a bit big!
http://img264.imageshack.us/img264/9403/theflyingfigdb8.png
-
loik this? (http://img264.imageshack.us/img264/9403/theflyingfigdb8.png)
-
That works!