0% found this document useful (0 votes)
32 views

PHP

This document displays a table of 2013 minimum regional wage (UMR) data for different provinces in Indonesia. The table includes the province name and the minimum wage amount formatted with Indonesian currency. There are options to print or download the table.

Uploaded by

ArdiSaputra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views

PHP

This document displays a table of 2013 minimum regional wage (UMR) data for different provinces in Indonesia. The table includes the province name and the minimum wage amount formatted with Indonesian currency. There are options to print or download the table.

Uploaded by

ArdiSaputra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<?

php
require ('../inc/config.php');
$query = "select * from umr2013 ";
$result = mysql_query($query) or die(mysql_error());
$no = 1;?>
<html>
<head>
<link href="../assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">

body {

padding-top: 20px;
padding-bottom: 40px;
font-size: 0.7em;
}
</style>
</head>
<body>
<div class='span8 offset2'>
<h2 style='text-align: center'> UMR 2013</h2>
<hr>
<table class="table table-condensed table-hover">
<thead>
<th><td><b>Propinsi </b></td><td
class='pull-right'><b>Upah </b></td></th>
</thead>
<tbody>
<?php
$query="select * from umr2013";
$result=mysql_query($query) or die(mysql_error());
$no=1;

//proses menampilkan data


while($rows=mysql_fetch_object($result)){
?>
<tr>
</td><td><?

echo $rows ->

no;?></td>
<td><?

echo $rows ->

propinsi;?></td>
<td ><p class='pull-right'><? echo
format_rupiah($rows -> upah);?></p></td>
</tr>
<?
}?>
</tbody>
</table>
<p align='center'>
<a href="umr2013_cetak.php" cls='btn'
onClick="window.print();return false"> <i class='icon-print'></i>Cetak </a>
</p>
</div>
</body>
</html>

You might also like