This file contains hidden or 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="countryCodeAlpha2" class="countryCodeAlpha2"> | |
<option value ="null">Choose a Country</option> | |
<option value ="AF">Afghanistan</option> | |
<option value ="AX">Åland</option> | |
<option value ="AL">Albania</option> | |
<option value ="DZ">Algeria</option> | |
<option value ="AS">American Samoa</option> | |
<option value ="AD">Andorra</option> | |
<option value ="AO">Angola</option> | |
<option value ="AI">Anguilla</option> |
This file contains hidden or 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
<div class="effect3" style="margin:20px;"> | |
<img class="effect3" src="http://0777.ir/img/lndl.png" | |
original-src="http://pearlsquirrel.com/profilethumbnails/$thumbnail" | |
width="180" height="180" alt="PearlSquirrel"/> | |
</div> |
This file contains hidden or 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
public static function DateDiff($d1, $d2) { | |
if($d1 == $d2) return 0; | |
$d1 = (int)strtotime($d1); | |
$d2 = (int)strtotime($d2); | |
$timz = array( | |
"year" => (60 * 60 * 24 * 365), | |
"mth" => (60 * 60 * 24 * 30), | |
"day" => (60 * 60 * 24), | |
"hour" => (60 * 60), | |
"min" => (60) |