This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Source: http://www.apphp.com/index.php?snippet=php-get-remote-ip-address */ | |
$to = '[email protected]'; | |
$subject = 'Test Email'; | |
$body = 'Body of your message here. You can use HTML tags also, e.g. <br><b>Bold</b>'; | |
$headers = 'From: John Smith'."\r\n"; | |
$headers .= 'Reply-To: [email protected]'."\r\n"; | |
$headers .= 'Return-Path: [email protected]'."\r\n"; | |
$headers .= 'X-Mailer: PHP5'."\n"; | |
$headers .= 'MIME-Version: 1.0'."\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="numero-prefixe" id="side-widget-phone-prefix"> | |
<option value="+93">🇦🇫 +93</option> | |
<option value="+358">🇦🇽 +358</option> | |
<option value="+355">🇦🇱 +355</option> | |
<option value="+213">🇩🇿 +213</option> | |
<option value="+1684">🇦🇸 +1684</option> | |
<option value="+376">🇦🇩 +376</option> | |
<option value="+244">🇦🇴 +244</option> | |
<option value="+1264">🇦🇮 +1264</option> | |
<option value="+672">🇦🇶 +672</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#bottomband{ | |
position:relative; | |
width: 100%; | |
padding: 2em 0; | |
font-size: .8em; | |
background: $marron_gris; | |
footer { | |
display: table; | |
width: 1000px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#bottomband{ | |
min-width:1000px; | |
position:relative; | |
background:$marron_gris; | |
font-size: 12px; | |
height:90px; | |
footer{ | |
width:1000px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// setup geolocation purpose and accuracy | |
Ti.Geolocation.accuracy = Ti.Geolocation.ACCURACY_BEST; | |
Ti.Geolocation.purpose = L('geo-purpose'); | |
// setup map and poi's annotation | |
var latitude = 48.847684, | |
longitude = 2.35165; | |
var annotation = Titanium.Map.createAnnotation({ | |
animate: true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters