Archivio di agosto 5th, 2009
< ?php
function convert_emails_to_clickable_links($text)
{
$regex = "(+)". # name
"@". # at
"({1,64})". # domain
"\.". # period
"({2,10})"; # domain extension
$text = eregi_replace($regex, '\1@\2.\3', $text);
return $text;
}
$text = 'You can contact me at: example-name@mysite.com. My alternative address is other-username@domain.com.';
echo convert_emails_to_clickable_links($text);
/*
You can contact me at: example-name@mysite.com. My alternative address is other-username@domain.com.
?>
*/
fonte: www.sastgroup.com ...leggi tutto»
config.php
< ?php
/*
---------------
Countries List
---------------
*/
$countries = array('1' => 'Afghanistan',
'2' => 'Albania',
'3' => 'Algeria',
'4' => 'American Samoa',
'5' => 'Andorra',
'6' => 'Angola',
'7' => 'Anguilla',
'8' => 'Antarctica',
'9' => 'Antigua and Barbuda',
'10' => 'Argentina',
'11' => 'Armenia',
'12' => 'Aruba',
'13' => 'Australia',
'14' => 'Austria',
'15' => 'Azerbaidjan',
'16' => 'Bahamas',
'17' => 'Bahrain',
'18' => 'Bangladesh',
'19' => 'Barbados',
'20' => 'Belarus',
'21' => 'Belgium',
'22' => 'Belize',
'23' => 'Benin',
'24' => 'Bermuda',
'25' => 'Bhutan',
'26' => 'Bolivia',
'27' => 'Bosnia-Herzegovina',
'28' => 'Botswana',
'29' => 'Bouvet Island',
'30' => 'Brazil',
'31' => 'British Indian Ocean Territory',
'32' => 'Brunei Darussalam',
'33' => 'Bulgaria',
'34' => 'Burkina Faso',
'35' => 'Burundi',
'36' => 'Cambodia',
'37' => 'Cameroon',
'38' => 'Canada',
'39' => 'Cape Verde',
'40' => 'Cayman Islands',
'41' => 'Central African Republic',
'42' ...leggi tutto»
