<?php
include "config_sistema.php";
// recebe os dados do formulario
$codigo = (int) $_POST['id'];
// deleta o usuario
$consulta = mysql_query("delete from cliques where id='$id'");
// verifica se foi excluido o usuario
if($consulta) {
$msg = urlencode("Usuário excluido com sucesso!");
header("Location: listar_usuarios.php?msg=$msg");
exit;
} else {
$erro = urlencode("Não foi possivel excluir o contato!");
header("Location: listar_usuarios.php?erro=$erro");
exit;
}
?>
Question
Brandow
eu estou com problema para deletar as tabelas por meio de um código php, eu aperto em excluir e a tabela não deleta.
códigos:
listar_usuários
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.