I have this code that sends multiple data in MySQL Database using JQuery Ajax, all works fine but when i try to refresh the page using ajax and add new record, Its populated the number of times equivalent to the last counter.
Below is my index.php page;
JavaScript
x
215
215
1
<div id="sample_table_data">
2
<div class="row">
3
<div class="panel border-cyan-dark">
4
<div class="panel-heading bg-cyan text-white border-cyan-dark">
5
<div class="panel-title">
6
<h4>PHP - Sending multiple forms data through jQuery Ajax</h4>
7
</div>
8
</div>
9
<div class="panel-body">
10
<div style="padding-bottom: 10px;" align="right">
11
<button name="add" id="add" class="btn btn-success btn-sm">
12
<i class="fa fa-plus-square"></i>Add Measures
13
</button>
14
</div>
15
<form method="POST" id="user_form">
16
<div class="row">
17
<div class="table-responsive margin-bottom-20" >
18
<table class="table table-striped table-bordered table-condensed table-hover" id="user_data">
19
<thead>
20
<tr>
21
<th>First Name</th>
22
<th>Last Name</th>
23
<th>Details</th>
24
<th>Remove</th>
25
</tr>
26
</thead>
27
</table>
28
</div>
29
</div>
30
<div class="row">
31
<input type="submit" name="insert" id="insert" class="btn btn-primary btn-sm" value="Insert">
32
</div>
33
</form>
34
</div>
35
</div>
36
</div>
37
</div>
38
39
<!-- Form Dialogue Box -->
40
<div id="user_dialog">
41
<div class="row">
42
<div class="col-sm-12">
43
<div class="form-group">
44
<label>Enter First Name</label>
45
<input type="text" name="first_name" id="first_name" class="form-control input-sm">
46
<span id="error_first_name" class="text-danger"></span>
47
</div>
48
</div>
49
</div>
50
<div class="row">
51
<div class="col-sm-12">
52
<div class="form-group">
53
<label>Enter Last Name</label>
54
<input type="text" name="last_name" id="last_name" class="form-control input-sm">
55
<span id="error_last_name" class="text-danger"></span>
56
</div>
57
</div>
58
</div>
59
<div class="row">
60
<div class="col-sm-12">
61
<div class="form-group">
62
<input type="hidden" name="row_id" id="hidden_row_id">
63
<button type="button" name="save" id="save" class="btn btn-info btn-sm">Save</button>
64
</div>
65
</div>
66
</div>
67
</div>
68
69
<!-- Alert Box -->
70
<div id="action_alert" title="Action"></div>
71
72
<script>
73
$(document).ready(function(){
74
75
var count = 0;
76
77
$('#user_dialog').dialog({
78
autoOpen:false,
79
width:800
80
});
81
82
83
$('#add').click(function(){
84
$('#user_dialog').dialog('option', 'title', 'Add Data');
85
$('#first_name').val('');
86
$('#last_name').val('');
87
$('#error_first_name').text('');
88
$('#error_last_name').text('');
89
$('#first_name').css('border-color', '');
90
$('#last_name').css('border-color', '');
91
$('#save').text('Save');
92
$('#user_dialog').dialog('open');
93
});
94
95
$('#save').click(function(){
96
97
var error_first_name = '';
98
var error_last_name = '';
99
var first_name = '';
100
var last_name = '';
101
if($('#first_name').val() == '') {
102
error_first_name = 'First Name is required';
103
$('#error_first_name').text(error_first_name);
104
$('#first_name').css('border-color', '#cc0000');
105
first_name = '';
106
} else {
107
error_first_name = '';
108
$('#error_first_name').text(error_first_name);
109
$('#first_name').css('border-color', '');
110
first_name = $('#first_name').val();
111
}
112
if($('#last_name').val() == '') {
113
error_last_name = 'Last Name is required';
114
$('#error_last_name').text(error_last_name);
115
$('#last_name').css('border-color', '#cc0000');
116
last_name = '';
117
} else {
118
error_last_name = '';
119
$('#error_last_name').text(error_last_name);
120
$('#last_name').css('border-color', '');
121
last_name = $('#last_name').val();
122
}
123
124
125
if(error_first_name != '' || error_last_name != '') {
126
return false;
127
128
} else {
129
if($('#save').text() == 'Save')
130
{
131
count++;
132
output = '<tr id="row_'+count+'">';
133
output += '<td>'+first_name+' <input type="hidden" name="hidden_first_name[]" id="first_name'+count+'" class="first_name" value="'+first_name+'" /></td>';
134
output += '<td>'+last_name+' <input type="hidden" name="hidden_last_name[]" id="last_name'+count+'" value="'+last_name+'" /></td>';
135
output += '<td><button type="button" name="view_details" class="btn btn-warning btn-xs view_details" id="'+count+'">View</button></td>';
136
output += '<td><button type="button" name="remove_details" class="btn btn-danger btn-xs remove_details" id="'+count+'">Remove</button></td>';
137
output += '</tr>';
138
$('#user_data').append(output);
139
}
140
else
141
{
142
var row_id = $('#hidden_row_id').val();
143
output = '<td>'+first_name+' <input type="hidden" name="hidden_first_name[]" id="first_name'+row_id+'" class="first_name" value="'+first_name+'" /></td>';
144
output += '<td>'+last_name+' <input type="hidden" name="hidden_last_name[]" id="last_name'+row_id+'" value="'+last_name+'" /></td>';
145
output += '<td><button type="button" name="view_details" class="btn btn-warning btn-xs view_details" id="'+row_id+'">View</button></td>';
146
output += '<td><button type="button" name="remove_details" class="btn btn-danger btn-xs remove_details" id="'+row_id+'">Remove</button></td>';
147
$('#row_'+row_id+'').html(output);
148
}
149
150
$('#user_dialog').dialog('close');
151
}
152
});
153
154
155
$(document).on('click', '.view_details', function(){
156
var row_id = $(this).attr("id");
157
var first_name = $('#first_name'+row_id+'').val();
158
var last_name = $('#last_name'+row_id+'').val();
159
$('#first_name').val(first_name);
160
$('#last_name').val(last_name);
161
$('#save').text('Edit');
162
$('#hidden_row_id').val(row_id);
163
$('#user_dialog').dialog('option', 'title', 'Edit Data');
164
$('#user_dialog').dialog('open');
165
});
166
167
168
$(document).on('click', '.remove_details', function(){
169
var row_id = $(this).attr("id");
170
if(confirm("Are you sure you want to remove this row data?")) {
171
$('#row_'+row_id+'').remove();
172
} else {
173
return false;
174
}
175
});
176
177
$('#action_alert').dialog({
178
autoOpen:false
179
});
180
181
182
$('#user_form').on('submit', function(event){
183
event.preventDefault();
184
var count_data = 0;
185
$('.first_name').each(function(){
186
count_data = count_data + 1;
187
});
188
if(count_data > 0)
189
{
190
var form_data = $(this).serialize();
191
$.ajax({
192
url:"pages/insert.php",
193
method:"POST",
194
data:form_data,
195
success:function(data)
196
{
197
$('#user_data').find("tr:gt(0)").remove();
198
count =0;
199
$('#action_alert').html('<p>Data Inserted Successfully</p>');
200
$('#action_alert').dialog('open');
201
}
202
})
203
}
204
else
205
{
206
$('#action_alert').html('<p>Please Add atleast one data</p>');
207
$('#action_alert').dialog('open');
208
}
209
});
210
211
212
213
});
214
</script>
215
and this is my insert.php code
JavaScript
1
24
24
1
<?php
2
3
//insert.php
4
5
$connect = new PDO("mysql:host=localhost;dbname=test", "root", "****");
6
7
$query = "
8
INSERT INTO tbl_sample
9
(first_name, last_name)
10
VALUES (:first_name, :last_name)
11
";
12
13
for($count = 0; $count<count($_POST['hidden_first_name']); $count++)
14
{
15
$data = array(
16
':first_name' => $_POST['hidden_first_name'][$count],
17
':last_name' => $_POST['hidden_last_name'][$count]
18
);
19
$statement = $connect->prepare($query);
20
$statement->execute($data);
21
}
22
23
?>
24
Kindly help me how I can reset the counter to 0 after Ajax refresh. Thanks.
Advertisement
Answer
put the var count ouside the $(document)
JavaScript
1
4
1
var count = 0;
2
$(document).ready(function(){
3
4
and in your submit function
JavaScript
1
29
29
1
$('#user_form').on('submit', function(event){
2
event.preventDefault();
3
var count_data = 0;
4
$('.first_name').each(function(){
5
count_data = count_data + 1;
6
});
7
if(count_data > 0)
8
{
9
var form_data = $(this).serialize();
10
$.ajax({
11
url:"pages/insert.php",
12
method:"POST",
13
data:form_data,
14
success:function(data)
15
{
16
$('#user_data').find("tr:gt(0)").remove();
17
$('#action_alert').html('<p>Data Inserted Successfully</p>');
18
$('#action_alert').dialog('open');
19
}
20
count =0;
21
})
22
}
23
else
24
{
25
$('#action_alert').html('<p>Please Add atleast one data</p>');
26
$('#action_alert').dialog('open');
27
}
28
});
29
and in additional, you should be using .prop instead of .attr