Hello, I have to develop a confirm button for deleting a product. For this, I had the idea to execute a file in php through ajax from the moment I click on "Confirm" in the JS confirm together, passing the value of a variable that will serve to make the sqls.
The problem is that I do not know how to pass the value of this variable, we examples that I found show how to pass values of inputs by the id or values already determined, but nothing like what I need. >
PHP with JS:
<?php
$codprod = $_POST['produtoDelete'];// Esse é o valor que preciso para fazer as sqls
//JS
<script>
function excluirConfirm() {
var txt;
var r = confirm("Tem certeza que deseja excluir esse produto?");
if (r == true) {
//Aqui fica o ajax
$.ajax({
type: 'post',
url: 'produtoSessionEdit.php',
dataType: 'json',
data: {
codprod: ? //AQUI QUE ESTA MINHA DÚVIDA
} /* ... */
});
}else {
txt = "You pressed Cancel!";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
?>
PHP file with sqls
<?php
ob_start();
session_start();
$codprod = $_POST['produtoDelete'];
//Deleção do produto
$select= "DELETE DESCRICAO FROM PRODUTO WHERE COD_PRODUTO=:codd";
$result= $pdo->prepare($select);
$result->bindParam(':codd', $codprod);
$result->execute();
echo '<script type="text/javascript"> alert("Produto excluido!"); </script>';
?>
What can I do to sort this out?