The error was: utf8 "\xB3" does not map to Unicode
Oto aktualny kod php:
<?php $dirlist = NULL; $filelist = NULL; for ($i = 0; $i < $deep; $i++) { $icon_dir .= '../'; } $icon_dir .= 'img_filelist/'; { { if ($file != "." && $file != ".." && $file != "index.php") { { $dirlist[$file] = '<a href="' . $file . '/"><img src="' . $icon_dir . 'folder.png" >' . $file . '</a><br>'; } else { { } else { $filelist[$file] .= 'file'; } $filelist[$file] .= '.png"> ' . $file . '</a><br>'; } } } } ?> <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Lista plików</title> </head> <body> <p>List of files:</p> <p> <?php if ($deep == 1) { } elseif ($deep > 1) { } if ($dirlist !== NULL) { foreach ($dirlist as $key => $val) { } } if ($filelist !== NULL) { foreach ($filelist as $key => $val) { } } ?> </p> </body> </html>
Proszę o jakąś pomoc, albo chociaż naprowadzenie gdzie mogę szukać rozwiązania. Z góry dziękuję.