Skip to content

Instantly share code, notes, and snippets.

View techguydev's full-sized avatar

Luis Mata techguydev

View GitHub Profile
@howkymike
howkymike / currency-dropdown.html
Last active March 17, 2024 23:36
HTML Dropdown Currency List. Compatibile with ISO 4217 standard and extended with the currencies not included in the ISO 4217 but used commercially.
<select id="currencyList">
<option value="USD" selected="selected" label="US dollar">USD</option>
<option value="EUR" label="Euro">EUR</option>
<option value="JPY" label="Japanese yen">JPY</option>
<option value="GBP" label="Pound sterling">GBP</option>
<option disabled>──────────</option>
<option value="AED" label="United Arab Emirates dirham">AED</option>
<option value="AFN" label="Afghan afghani">AFN</option>
<option value="ALL" label="Albanian lek">ALL</option>
<option value="AMD" label="Armenian dram">AMD</option>
@MindaugasR
MindaugasR / currency_list
Last active December 8, 2022 13:34
World Currency list in PHP Array
array (
'ALL' => 'Albania Lek',
'AFN' => 'Afghanistan Afghani',
'ARS' => 'Argentina Peso',
'AWG' => 'Aruba Guilder',
'AUD' => 'Australia Dollar',
'AZN' => 'Azerbaijan New Manat',
'BSD' => 'Bahamas Dollar',
'BBD' => 'Barbados Dollar',
'BDT' => 'Bangladeshi taka',
@agarzon
agarzon / emailXtractor.php
Created July 16, 2012 14:46
Extract all email address from any text content removing duplicated, and exporting as TEXT, SQL or CSV
<?php
/**
*
* Extract all email address from any text content removing duplicated
* Return string formated as: TEXT, SQL or CSV
* @author Alexander Garzon
*
*/
class emailXtractor {