-
Notifications
You must be signed in to change notification settings - Fork 6
/
tambah_kal.php
82 lines (76 loc) · 2.87 KB
/
tambah_kal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/*
* Sistem Informasi Sekolah
* - Kalender Pendidikan
*
* Ditambahkan pada Versi 2.1
*
* Program ini adalah program Donasi http://phpbego.wordpress.com
* Anda hanya saya minta sedikit donasi untuk program ini, tidak lebih.
* Jika anda menghargai program saya, silakan anda hubungi saya
*
* SMS : 085263616901
* Email : phpbego@yahoo.co.id, phpbego@gmail.com
*
*/
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO kalender (k_t_id, k_mulai, k_selesai, k_ket) VALUES (%s, %s, %s, %s)",
GetSQLValueString($_POST['k_t_id'], "int"),
GetSQLValueString($_POST['k_mulai'], "date"),
GetSQLValueString($_POST['k_selesai'], "date"),
GetSQLValueString($_POST['k_ket'], "text"));
$Result1 = mysql_query($insertSQL, $koneksi) or die(mysql_error());
}
$query_rec_list_tahun = "SELECT * FROM tahun ORDER BY t_id ASC";
$rec_list_tahun = mysql_query($query_rec_list_tahun, $koneksi) or die(mysql_error());
$row_rec_list_tahun = mysql_fetch_assoc($rec_list_tahun);
$totalRows_rec_list_tahun = mysql_num_rows($rec_list_tahun);
?>
<div class="judul">
<h3><span class="glyphicon glyphicon-plus-sign"></span> Tambah Kalender</h3>
</div>
<form class="well" method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table class="table-form">
<tr>
<td>Tahun Pelajaran</td>
<td><select class="form-control" name="k_t_id" id="k_t_id">
<?php
do {
?>
<option value="<?php echo $row_rec_list_tahun['t_id']?>"><?php echo $row_rec_list_tahun['t_nm']?> - <?php echo $row_rec_list_tahun['t_jn']?></option>
<?php
} while ($row_rec_list_tahun = mysql_fetch_assoc($rec_list_tahun));
$rows = mysql_num_rows($rec_list_tahun);
if($rows > 0) {
mysql_data_seek($rec_list_tahun, 0);
$row_rec_list_tahun = mysql_fetch_assoc($rec_list_tahun);
}
?>
</select></td>
</tr>
<tr>
<td>Mulai</td>
<td>
<input class="form-control" type="text" name="k_mulai" value="" size="32" placeholder="Tanggal Mulai">
</td>
</tr>
<tr>
<td>Selesai</td>
<td><input class="form-control" type="text" name="k_selesai" value="" size="32" placeholder="Tangal Selesai"></td>
</tr>
<tr>
<td>Keterangan</td>
<td><textarea class="form-control" name="k_ket" cols="32"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input class="btn btn-success" type="submit" value="Simpan">
<input class="btn btn-info" type="button" name="button2" id="button2" value="Kembali" onClick="location='index.php?page=tampil_kal'"/></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1">
</form>