-
Notifications
You must be signed in to change notification settings - Fork 1
/
membertype.php
193 lines (156 loc) · 3.84 KB
/
membertype.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<?php
session_start();
?>
<?php
include("header.php");
if(isset($_POST[submit]))
{
if(isset($_GET[editid]))
{
$sql ="UPDATE member_type set member_type=$_POST[member_type],description=$_POST[description],status=$_POST[status] WHERE member_type_id=$_GET[editid]";
$qsql = mysqli_query($con,$sql);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert(member record updated successfully..);</script>";
}
else
{
echo mysqli_error($con);
}
}
else
{
$sql ="INSERT INTO member_type(member_type,description,status) VALUES($_POST[member_type],$_POST[description],$_POST[status])";
$qsql = mysqli_query($con,$sql);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert(member type record inserted successfully..);</script>";
echo "<script>window.location=membertype.php;</script>";
}
else
{
echo mysqli_error($con);
}
}
}
?>
<?php
if(isset($_GET[editid]))
{
$sqledit = "SELECT * FROM member_type WHERE member_type_id=$_GET[editid]";
$qsqledit = mysqli_query($con,$sqledit);
$rsedit = mysqli_fetch_array($qsqledit);
}
?>
<div id="page-header">
<div class="section-bg" style="background-image: url(img/background-2.jpg);"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="header-content">
<h1>Member Type</h1>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="section" style="padding-top: 1px;">
<div class="container">
<div class="row">
<main id="" class="col-md-12">
<div class="">
<div class="">
<div class="article-comments">
<div class="media">
<div class="media-left">
<img class="media-object" src="img/charity.jpg" style="width: 100px;height: 100px;">
</div>
<div class="media-body">
<div class="media-heading">
<h4>Member Type</h4>
</div>
<p>
<form method="post" action="" enctype="multipart/form-data" onsubmit="return validateform()">
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Member Type </div>
<div class="col-md-10">
<input type="text" name="member_type" id="member_type" class="form-control" value="<?php echo $rsedit[member_type]; ?>">
<span id="errmember_type" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Description </div>
<div class="col-md-10">
<input type="text" name="description" id="description" class="form-control" value="<?php echo $rsedit[description]; ?>">
<span id="errdescription" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Status</div>
<div class="col-md-10">
<select class="form-control" name="status" id="status">
<option value="">Select Status</option>
<?php
$arr = array("Active","Inactive");
foreach($arr as $val )
{
if($val == $rsedit[status]){echo "<option value=$val selected>$val</option>";} else {echo "<option value=$val>$val</option>";}
}
?>
</select>
<span id="errstatus" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;"></div>
<div class="col-md-10">
<input type="submit" name="submit" id="submit" class="form-control btn btn-success" style="width: 200px;">
</div>
</div>
</form>
</p>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
</div>
<?php
include("footer.php");
?>
<script>
function validateform()
{
var i = 0;
$(.errorclass).html();
if(document.getElementById("member_type").value=="")
{
document.getElementById("errmember_type").innerHTML = "Kindly select Member type...";
i = 1;
}
if(document.getElementById("description").value=="")
{
document.getElementById("errdescription").innerHTML = "Kindly enter description....";
i = 1;
}
if(document.getElementById("status").value=="")
{
document.getElementById("errstatus").innerHTML = "Kindly select status...";
i = 1;
}
if(i == 0)
{
return true;
}
else
{
return false;
}
}
</script>