Hello, I need help with a page I'm currently working on that uses Polish instead of English.
I'm sending header information at the very top of the page.
<?
header("Content-Type: text/html; charset=utf-8"); // line 2
?>
// rest of the page is HTML
Now when I upload the page to the server I get this back.
<br />
<b>Warning</b>: Cannot modify header information - headers already sent by (output started at index_polish.php:1) in <b>/index_polish.php</b> on line <b>2</b><br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="pl">
<head>
Now as you can see this "" is messing it all up. It's not in the code on my pc, when I upload the code and view the page it shows that. When I download the code again, it is also not there.
Any idea's on this?
Thanks in advance.
Iquil