top-image

Archivio di agosto 5th, 2009

Calendario jquery settimanale in stile google calendar
Demo: http://jquery-week-calendar.googlecode.com/svn/trunk/jquery.weekcalendar/full_demo/weekcalendar_full_demo.html Codice Sorgente: http://code.google.com/p/jquery-week-calendar/downloads/list fonte: www.sastgroup.com ...leggi tutto»
Estrarre i numeri all
  function extract_numbers($string) { preg_match_all('/(+)/', $string, $match);   return $match[0]; }   $string = 'Lorem ipsum dolor sit 45 40 amet, consectetuer adipiscing elit. 35 65675 Suspendisse sed nibh non diam consectetuer pharetra. Morbi ultricies 235 536pede et pede. 9432 3536 Nunc eu risus eget quam lacinia feugiat. In sapien sem, fringilla quis, 34 24 8762condimentum id, bibendum ut, nibh. Quisque 2367 784 elementum massa 350 235 vel nulla.';   $numbers_array = extract_numbers($string);   echo ''; print_r($numbers_array); echo "";   Output   Array ( [0] => 45 [1] => 40 [2] => 35 [3] => 65675 [4] => 235 ...leggi tutto»
Convertire un indirizzo e-mail da una stringa in un link
  < ?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»
Menu a tendina dinamico con i paesi
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»
Pagina 2 di 2:« 1 2
bottom-img