0

It gives me this error

Full Header

Full Settings.php

Warning: Cannot modify header information - headers already sent by (output started at /media/maksim/LENOVO/github/server/pages/settings.php:34) in /media/maksim/LENOVO/github/server/pages/header.php on line 211

Here is that line of code and I know it has to be that one because it works when I remove it.

<option value="0" <?php if ($nightthemeis == 0) {echo "selected";} ?> >Off</option>
Maks
  • 119
  • 1
  • 6

1 Answers1

0

You have got to be using the echo statement before :

header(), session_start(), setcookie()

when it should be afterward,

user10089632
  • 5,216
  • 1
  • 26
  • 34
  • Look at the full script online. I have a lot of echo before the one that had the problem. – Maks Jul 05 '17 at 02:16