Cod: Selectaţi tot
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if ($_POST['confirm'] === 'true') {
delete_record($_REQUEST['$id']);
$sql = "DELETE FROM CLienti WHERE id=$id";
Cod: Selectaţi tot
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if ($_POST['confirm'] === 'true') {
delete_record($_REQUEST['$id']);
$sql = "DELETE FROM CLienti WHERE id=$id";
Cod: Selectaţi tot
function confirmare(){
var retVal = confirm("Sunteti sigur ? Datele vor fi sterse !");
if( retVal == true ){
document.write ("Date sterse !");
return true;
document.close();
}
else{
document.write ("Ai facut o alegere inteleapta !");
return false;
}
}
Cod: Selectaţi tot
<input type ="button" value ="Stergere" onclick="confirmare();">
Cod: Selectaţi tot
$.ajax(
url: 'url-ul tau',
method: 'POST/GET',
data: {key: 'value'}
);