my situation is : When I click to my StatusCheck (it has 1 and 0 value) link image it changes to 1 , when i click i need that value 1 will change in my database table ..., i know that this thing does with ajax , how can i do this?
here is my code
<script type="text/javascript">
$(function () {
$('.imageCheck').click(function (e) {
e.preventDefault();
$(this).find("#bg").attr('src', "/application/admin/img/tick.png");
});
});
</script>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php
foreach ($users as $user):
?>
<tr>
<td><?=$user['id']?></td>
<td>
<div class="imageCheck"><img id="bg" src="<?php echo $img_path;?>publish_x.png" name="statusCheck" value="0" />
</div>
</td>