Skip to content

Instantly share code, notes, and snippets.

@abdul-hafizh
abdul-hafizh / hello_on_nodejs
Last active March 28, 2017 02:31
This script just for beginner how to show hello world.
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
@abdul-hafizh
abdul-hafizh / format_tanggal_php
Last active March 27, 2017 02:22
merubah format tanggal mysql menjadi format tanggal Indonesia
function tanggalIndo($tgl) {
$namaBulan = array(1=>"Januari","Februari","Maret","April","Mei","Juni","Juli",
"Agustus","September","Oktober","November","Desember");
$date = explode("-",$tgl);
$bulan = intval($date[1]);
$tanggal = $date[2]." ".$namaBulan[$bulan]." ".$date[0];
return $tanggal;
}
<?php
$a = 5 ;
$b = 5 ;
$s = $a * $b ;
echo $s ;
?>