I'm reusing a search PHP script, but I get this error:
Warning: Cannot modify header information - headers already sent by (output started at /Volumes/Work/MAMP/PC Flag/php_scripts/conection.php:2) in /Volumes/Work/MAMP/PC Flag/includes/search.php on line 63
line #2 conection.php:
$con = mysqli_connect("localhost", "root", "root", "cms");
line #63 search.php:
header('Location: search-page.php?keywords=' . urlencode($keywords));
What is the problem?
Also I need to mention that the script doesn't redirect me anymore to search-page.php as it should.