Ejemplo n.º 1
0
<p>
<fieldset style="width: 90%; margin: auto;">
	<legend> <b> Data Iuran </b> </legend>
	<fieldset style="width: 50%; margin: auto;">
		<legend> <b> Periode </b> </legend>
		<form method="POST">
			<table>
				<tr>
					<td height="34">Tanggal</td>
					<td>:</td>
					<td><input type="date" name="dari"></td>
				</tr>

				<tr>
					<td></td>
					<td></td>
					<td><input type="submit" name="lihat" value="Lihat"></td>
				</tr>
			</table>
		</form>
	</fieldset>
	<?php 
require_once "controller/iuranController.php";
$action = new iuranController();
if (@$_POST['lihat']) {
    $action->detailIuran();
}
?>
</fieldset>
Ejemplo n.º 2
0
<?php

require_once "controller/anggotaController.php";
require_once "controller/iuranController.php";
require_once "controller/loginController.php";
$anggota = new anggotaController();
$iuran = new iuranController();
$login = new loginController();
$page = @$_GET['page'];
$act = @$_GET['act'];
$id = @$_GET['id'];
if ($page == '') {
    include "home.php";
} else {
    if ($page == 'anggota') {
        if ($act == '') {
            $anggota->view();
        } else {
            if ($act == 'tambah') {
                $anggota->viewInsert();
            } else {
                if ($act == 'update') {
                    $anggota->viewUpdate($id);
                } else {
                    if ($act == 'delete') {
                        $anggota->deleteAnggota($id);
                    }
                }
            }
        }
    } else {