Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 470 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 470 Bytes

TagihanPLN.php

Simple PHP function/helper to create API tagihan PLN via cURL and return JSON.

USAGE

<?php
// include tagihanpln.php
require('tagihanpln.php');

// data
$id_pelanggan = '132000166606'; // (required)
$tahun = '2016'; // (optional. Default: tahun sekarang)
$bulan = '06'; // (optional. Default: bulan sekarang)

// call function tagihan_pln()
echo tagihanpln($id_pelanggan, $tahun, $bulan);</pre>