<?php
include("cabecalho.php");
include("conecta.php");
include("banco-produto.php");
$id = $_GET['id'];
removeProduto($conexao, $id);
header("Location: produto-lista.php");
?>
A mensagem de erro impressa :
Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\nerds\loja\remove-produto.php:2) in C:\AppServ\www\nerds\loja\remove-produto.php on line 10
sendo assim não exclui o produto o que devo fazer?