26 lines
926 B
PHP
26 lines
926 B
PHP
<?php
|
|
session_start();
|
|
include_once("../conexao.php");
|
|
|
|
$id = filter_input(INPUT_POST, 'id', FILTER_SANITIZE_NUMBER_INT);
|
|
$nome = filter_input(INPUT_POST, 'nome', FILTER_SANITIZE_STRING);
|
|
|
|
$verif="SELECT * from orcamentos, prestadores_servicos WHERE id_servico='$id'";
|
|
$resu= mysqli_query($con, $verif);
|
|
if (mysqli_affected_rows($con)){
|
|
$_SESSION['msg'] = "<p style='color:green;'>Este serviço não pode ser excluído, pois existe orçamento ou prestadores_serviços cadastrado</p>";
|
|
header("Location: index.php");
|
|
}else{
|
|
$result= "DELETE FROM servicos WHERE id='$id'";
|
|
$resultado= mysqli_query($con, $result);
|
|
|
|
|
|
if(mysqli_affected_rows($con)){
|
|
$_SESSION['msg'] = "<p style='color:green;'>Serviço excluido com sucesso</p>";
|
|
header("Location: index.php");
|
|
}else{
|
|
$_SESSION['msg'] = "<p style='color:red;'>Serviço não foi excluido</p>";
|
|
header("Location: edit_ser.php?id=$id");
|
|
}
|
|
}
|
|
?>
|