У меня вопрос о том, как удалить желаемый номер из img_ids
. Как видно из приведенной ниже таблицы, img_ids
вроде 68,67,66,65,64,
Я хочу удалить, например, номер 67
, как я могу это сделать с PHP. Мой разум путается из-за запятых: S.
<div class="delete" id="67">Delete Image</div>
Ajax
$("body").on("click", ".delete", function(){ var deleteimgid = $(this).attr("id"); var data = 'img='+deleteimgid; $.ajax({ type: 'POST', url: 'delete.php', data: data, cache: false, beforeSend: function(){}, success: function(response){ } }); });
delete.php
<?php include_once 'inc.php'; if(isset($_POST['img'])){ $imgid = mysqli_real_escape_string($db, $imgid); // Then what should be the query ? // I am confused because of the commas. } ?>