Needed a icon picker for mojoPortal.
Based off another Pen I made with AngularJS, but this one is JQuery.
Everything done by me - with the exception of the style, courtesy of Bootstrap.
A Pen by Mak Alamin on CodePen.
<div id="app"><App/></div> |
Needed a icon picker for mojoPortal.
Based off another Pen I made with AngularJS, but this one is JQuery.
Everything done by me - with the exception of the style, courtesy of Bootstrap.
A Pen by Mak Alamin on CodePen.
<?php | |
$bulan_masihi=date('m'); | |
$hari_masihi=date('d'); //Boleh +- | |
$tahun_masihi=date('Y'); | |
if (($tahun_masihi>1582)||(($tahun_masihi==1582)&&($bulan_masihi>10))||(($tahun_masihi==1582)&&($bulan_masihi==10)&&($hari_masihi>14))) | |
{ | |
$zjd=(int)((1461*($tahun_masihi + 4800 + (int)( ($bulan_masihi-14) /12) ))/4) + (int)((367*($bulan_masihi-2-12*((int)(($bulan_masihi-14)/12))))/12)-(int)((3*(int)(( ($tahun_masihi+4900+(int)(($bulan_masihi-14)/12))/100)))/4)+$hari_masihi-32075; | |
} | |
else |