I have this error and I've been trying to fix it for ages. It appeared from what appears to be out of nowhere as the page it is on was working fine yesterday.
the error is:
Warning: Cannot modify header information - headers already sent by (output started at /var/www/dev.racommerce.com/includes/header.php:97) in /var/www/dev.racommerce.com/cart.php on line 44
the code in the header.php file on line 97 is:
<?for($i = 0; $i < $count; $i++)
{?>
<li><a class="dropDown" href="<?="http://" . $_SERVER['HTTP_HOST'];?>/products.php?cat=<?=$result[$i]['categoryID']?>"><?=$result[$i]['categoryName']?></a></li>
<?}?>
and the code in the cart.php file on line 44 is:
header("location: cart.php");
I have been researching solutions from other answers such as How to fix "Headers already sent" error in PHP but am struggling to understand them or implement them in my code.
Could someone help me with this please?