I am having some trouble with some corrupted characters appearing on my form. I currently have my code in notepad++. What is seen in the following image is what happens when my code is encoded as UTF8 without BOM. https://i.stack.imgur.com/GGXyD.png
http://puu.sh/7pBGQ.png The second image is what happens when it is saved as UTF8. However, then I get the follow problems.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/.../event.php:1) in /home/.../validation.php on line 6
event.php starts off like:
<?php
require 'validation.php';
require 'member_header.php';
require 'member_header_vevent.php';
?>
<HTML>
<HEAD>
<!-- UTF-8 is the recommended encoding for your pages -->
<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
<TITLE>Special Event</TITLE>
<LINK rel='shortcut icon' href='images/vyico.ico'>
validation.php starts off like:
<?php
$page_title = "validation";
// some comments
session_start();
My understanding is that my files probably should be saved as UTF8, however something about that is causing the warning to pop up. From what I was looking around, that warning comes around if something appears the