I am making a simple API from PHP.
Code Snippet:
elseif ($_GET["command"]="verifyconn"){
header("Content-Type: application/json");
$data=array("response" => "success");
echo json_encode($data);
exit;
}
Whenever this is executed, I get this response on browser:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
</body>
</html>{"response":"wrong_secret"}
The whole HTML code gets printed on browser. When I remove header("Content-Type: application/json");, it gets fixed and JSON displays but in text. How can I fix it?
It doesn't get really fixed when you remove the content type header, but the HTML part will become "invisible", because the content type will fall back to the default text/html; if you check the source code of the page, you will see it's still there.
The real solution is to search for where the above HTML is printed and remove it.
Related
I am currently trying to implement a PHP page that will generate a code when a user clicks a button. The code will be generated on the fly, and then the PHP page will trigger a download file that will prompt the user to save the text file on their machine.
After reading numerous posts, I am using this bit of code which is short, concise and does exactly what I need:
{
$result = "Your code is: " . $_POST['req_code'];
header('Content-disposition: attachment; filename=code.lic');
header('Content-type: text/plain');
echo $result . "\n";
}
However, the downloaded file does not only contain the code, it also contains all the HTML from the current page. Below is just a fraction of what is included in the file:
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="UTF-8" />
<title>My Account | ...
I have tried using the "exit();" function to terminate the stream but it still outputs all the HTML.
Does anyone know what I'm doing wrong here? The file should only contain the contents of $result.
Thank you in advance.
Although this is an old thread, there are search results that still direct to here. So to answer the original question (sort of) by giving a simple stand-alone example that works, here goes:
Create two files, 'index.php' and 'redirect.php'
index.php:
<?php
$head = <<<EOHEAD
<head>
<title>Download document test</title>
<meta http-equiv="Content-Type" content="txt/html; charset=utf-8" />
</head>
EOHEAD;
$body = <<<EOBODY
<body>
<form action="redirect.php" method="post" id="mainform">
<input type="submit" name="download" value="Download"/>
<input type="submit" name="cancel" value="Cancel"/>
</form>
</body>
EOBODY;
echo $head.$body;
?>
redirect.php:
<?php
if (isset($_POST['download'])) {
header('Content-disposition: attachment; filename=test.txt');
header('Content-type: text/plain');
echo "Hello World\n";
}
else {
header("location:index.php");
}
?>
You need to either a) Make a new page to download the file (without any HTML) or b) Remove all HTML from the current page. Also, you are not supposed to send any content before calling header():
Remember that header() must be called before any actual output is
sent, either by normal HTML tags, blank lines in a file, or from PHP
Reference: http://php.net/manual/en/function.header.php
You do not have to delete all HTML code from download site, but there cannot be ANY HTML code before function, that downloads your files. Put your code ad the top of the page and it should be fine
I am just calling a simple PHP script through a HTML form.
An error is thrown everytime : "The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must to be declared in the document or in the transfer protocol"
I have defined the encoding both in PHP as well as HTML as UTF-8 (please refer to code below). I am unable to solve this problem despite searching all over the web.
HTML code :
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<meta content="UTF-8" http-equiv="encoding"/>
<title>Test</title>
</head>
<body>
<div align="center">
<form action= "google1.php" method="get" accept-charset="UTF-8" >
Enter Your Name:
<INPUT TYPE = "text" NAME = "student"> <BR>
<!--input name="q" type="text"-->
<br/ >
<input name="btnG" type="submit" value ="test">
</form>
</div>
</body>
PHP Code
header("Content-type: text/html; charset=UTF-8");
print "<pre>";
print_r($_GET);
print "</pre>";
The result after submitting the button (along with the error) is :
"; print_r($_GET); print ""; ?>
I am using XAMPP. I tried to edit .htaccess (added : AddType 'text/html; charset=UTF-8' html) as suggested in some of the solutions over internet but that also did not help.
I found a site where there is a simple form which calls a PHP script again. http://www.tjhsst.edu/~dhyatt/superap/form1.html . When I try to submit value in the form, I get the same error.
So I thought, this could be a browser problem and I changed the default encoding of my browser to UTF-8. But this also did not help.
I am a novice in web programming and trying to learn. Appreciate if any one can help.
Thanks,
Ashutosh
It looks like you have some issue with opening/closing tags.
Ensure that you have php code wrapped with <?php and ?> in your process1.php3 (Some details: http://php.net/manual/en/language.basic-syntax.phpmode.php)
Like here:
<?php
header("Content-type: text/html; charset=UTF-8");
print "<pre>";
print_r($_GET);
print "</pre>";
?>
UPD:
After a long session of question/answer finally appeared that OP were opening file with a form using file:// protocol. Like file:///C:/xampp/htdocs/example/form.html and form were submitted to file:///C:/xampp/htdocs/example/google1.php?... As apache works with HTTP protocol only, PHP were not executed actually.
Your Code:
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
Correct code:
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
You have forget to put slash at the end of meta-tag. You have not closed the meta tag.
Though, its not very crucial, as you have tried everything. Try this one too. It might work for you.
A website I am working on is displaying Crylic characters incorrectly. I don't know why. It doesn't appear to be a character encoding problem. The page title is in Crylic and appears fine. It is just the urldecoded string which is displaying incorrectly.
Locally I made a demo to see if I could determine what was going on.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<?php
$str = '%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B4%D1%80%D0%B0%D0%B2%D1%81%D1%82%D0%B2%D1%83%D0%B9%D1%82%D0%B5!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9C%D0%B5%D0%BD%D1%8F%20%D0%B7%D0%BE%D0%B2%D1%83%D1%82%20%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%2C%20%D1%80%D0%B0%D0%B4%20%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82%D1%81%D1%82%D0%B2%D0%BE%D0%B2%D0%B0%D1%82%D1%8C%20%D0%92%D0%B0%D1%81%20%D0%BD%D0%B0%20%D0%BC%D0%BE%D0%B5%D0%BC%20%D1%81%D0%B0%D0%B9%D1%82%D0%B5!%20%D0%9A%D0%B0%D0%BA%20%D0%92%D1%8B%20%D1%83%D0%B6%D0%B5%20%D0%B4%D0%BE%D0%B3%D0%B0%D0%B4%D0%B0%D0%BB%D0%B8%D1%81%D1%8C%2C%20%D1%8F%20-%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84.%20%D0%9A%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BA%D0%BE%D0%B3%D0%B4%D0%B0-%D1%82%D0%BE%20%D0%B4%D0%B0%D0%B2%D0%BD%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%B1%D1%8B%D0%BB%D0%BE%20%D0%BC%D0%BE%D0%B8%D0%BC%20%D1%85%D0%BE%D0%B1%D0%B1%D0%B8%2C%20%D0%BD%D0%BE%20%D1%83%D0%B6%D0%B5%20%D1%81%202005%20%D0%B3%D0%BE%D0%B4%D0%B0%20%D1%8D%D1%82%D0%BE%20%D0%BC%D0%BE%D1%8F%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D1%8F.%20%D0%98%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D1%80%D0%B8%D1%8F%D1%82%D0%BD%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%B5%D0%B9%20%D1%81%D1%82%D0%B0%D0%BB%D0%BE%20%D0%BB%D1%8E%D0%B1%D0%B8%D0%BC%D0%BE%D0%B5%20%D0%B4%D0%B5%D0%BB%D0%BE!%20%D0%9D%D0%B0%20%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B9%20%D0%BC%D0%BE%D0%BC%D0%B5%D0%BD%D1%82%20%D1%8F%20%D0%B6%D0%B8%D0%B2%D1%83%20%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%B2%20%D0%9F%D1%80%D0%B0%D0%B3%D0%B5.%20%D0%98%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B5%D0%B7%D0%B4%20%D0%B2%20%D1%8D%D1%82%D0%BE%D1%82%20%D1%83%D0%B4%D0%B8%D0%B2%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9%20%D0%B3%D0%BE%D1%80%D0%BE%D0%B4%20%D0%B2%202006%20%D0%B3%D0%BE%D0%B4%D1%83%20%D0%B2%D0%BE%20%D0%BC%D0%BD%D0%BE%D0%B3%D0%BE%D0%BC%20%D0%BF%D0%BE%D0%B2%D0%BB%D0%B8%D1%8F%D0%BB%20%D0%BD%D0%B0%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%8F%20%D1%81%D0%BA%D0%BE%D0%BD%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BB%20%D1%81%D0%B2%D0%BE%D0%B5%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%20%20%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B8%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B5%20%D1%81%D0%B5%D0%B9%D1%87%D0%B0%D1%81%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%B1%D1%83%D1%80%D0%BD%D0%BE%D0%B5%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D1%82%D0%B8%D0%B5%20-%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B9%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8!%20%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B0%20%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BD%D0%B8%D0%B5%206%20%D0%BB%D0%B5%D1%82%20%D1%8F%20%D1%81%D0%BD%D1%8F%D0%BB%20%D1%81%D0%BE%D1%82%D0%BD%D0%B8%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%2C%20%D1%87%D1%82%D0%BE%2C%20%D0%BA%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BD%D0%B0%D0%B7%D0%B2%D0%B0%D1%82%D1%8C%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%8B%D0%BC%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%BE%D0%BC!%20%D0%AD%D1%82%D0%BE%D1%82%20%D0%BE%D0%BF%D1%8B%D1%82%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BC%D0%BD%D0%B5%20%D0%B2%20%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B9%20%D0%BC%D0%B5%D1%80%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B0%D1%82%D1%8C%20%D0%B8%20%D1%81%D1%83%D0%B4%D0%B8%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F.%20%D0%94%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D1%87%D1%82%D0%BE%20%D0%BC%D0%BE%D0%B8%20%D1%81%D0%BE%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D1%8F%20%D0%BC%D0%BE%D0%B3%D1%83%D1%82%20%D0%BF%D0%BE%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%D1%81%D1%8F%20%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%82%D0%B5%D0%BC%20%D0%B8%D0%B7%20%D0%92%D0%B0%D1%81%2C%20%D0%BA%D1%82%D0%BE%20%D0%B7%D0%B0%D0%BD%D0%B8%D0%BC%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BF%D0%BB%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC%20%D1%81%D0%B2%D0%BE%D0%B5%D0%B3%D0%BE%20%D1%82%D0%BE%D1%80%D0%B6%D0%B5%D1%81%D1%82%D0%B2%D0%B0.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%230000FF%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D2787%22%20TARGET%3D%22_blank%22%3E%D0%92%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B2%D1%8C%D1%8E%20%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0%D0%BD%D0%B8%D0%B8%20Happywedding%3C%2FA%3E%3CFONT%20COLOR%3D%22%23000000%22%3E%20%20%D1%8F%20%D0%BF%D0%BE%D1%81%D1%82%D0%B0%D1%80%D0%B0%D0%BB%D1%81%D1%8F%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%B2%20%D0%BF%D1%80%D0%B8%D0%BD%D1%86%D0%B8%D0%BF%D0%B5%20%D0%B2%D0%B8%D0%B6%D1%83%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%83%D1%8E%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8E.%3CFONT%20COLOR%3D%22%230000FF%22%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9A%D1%80%D0%BE%D0%BC%D0%B5%20%D1%82%D0%BE%D0%B3%D0%BE%2C%20%D1%81%D0%BE%D0%B2%D0%B5%D1%82%D1%83%D1%8E%20%D0%92%D0%B0%D0%BC%20%D0%BE%D0%B1%D1%80%D0%B0%D1%82%D0%B8%D1%82%D1%8C%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%3CFONT%20COLOR%3D%22%230000FF%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D812%22%20TARGET%3D%22_blank%22%3E%20%D1%81%D1%82%D0%B0%D1%82%D1%8C%D1%8E%2C%20%D0%BF%D0%BE%D1%81%D0%B2%D1%8F%D1%89%D0%B5%D0%BD%D0%BD%D1%83%D1%8E%20%D1%82%D0%B5%D0%BC%D0%B5%20%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D0%B0%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%26quot%3B%D0%92%D0%B0%D1%88%D0%B5%D0%B3%D0%BE%26quot%3B%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B3%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B0%3C%2FA%3E%3C%2FFONT%3E%20-%20%D1%8F%20%D0%BD%D0%B5%20%D0%BF%D0%BE%20%D0%BD%D0%B0%D1%81%D0%BB%D1%8B%D1%88%D0%BA%D0%B5%20%D0%B7%D0%BD%D0%B0%D1%8E%2C%20%D0%BA%D0%B0%D0%BA%20%D0%BD%D0%B5%D0%BF%D1%80%D0%BE%D1%81%D1%82%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%BE%D0%BA%D0%B0%D0%B7%D1%8B%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B5...%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9D%D0%BE%2C%20%D1%80%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%BD%D0%B5%20%D1%82%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D1%81%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D1%8C%D0%B1%D0%B0%D0%BC%D0%B8.%20%D0%9C%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B%20%D0%92%D1%8B%20%D0%BC%D0%BE%D0%B6%D0%B5%D1%82%D0%B5%20%D1%83%D0%B2%D0%B8%D0%B4%D0%B5%D1%82%D1%8C%20%D0%B8%20%D0%B2%20%D0%BC%D0%BE%D0%B4%D0%BD%D1%8B%D1%85%20%D0%B6%D1%83%D1%80%D0%BD%D0%B0%D0%BB%D0%B0%D1%85%2C%20%D0%B8%20%D0%B2%20%D1%80%D0%B5%D0%BA%D0%BB%D0%B0%D0%BC%D0%B5%2C%20%D0%B8%20%D0%BD%D0%B0%20%D0%BE%D0%B1%D0%BB%D0%BE%D0%B6%D0%BA%D0%B0%D1%85%20%D0%BC%D1%83%D0%B7%D1%8B%D0%BA%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85%20%D0%B0%D0%BB%D1%8C%D0%B1%D0%BE%D0%BC%D0%BE%D0%B2%2C%20%D0%B8%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D0%BD%D0%B0%20%D1%8D%D1%82%D0%B8%D0%BA%D0%B5%D1%82%D0%BA%D0%B0%D1%85%20%D0%BA%D0%BE%D1%80%D0%BC%D0%BE%D0%B2%20%D0%B4%D0%BB%D1%8F%20%D0%B6%D0%B8%D0%B2%D0%BE%D1%82%D0%BD%D1%8B%D1%85!%20%D0%AF%20-%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%BE%D0%BD%D0%B0%D0%BB%20%D0%B8%20%D0%B4%D0%B5%D0%BB%D0%B0%D1%8E%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%83%D0%BC%D0%B5%D1%8E%20%D0%B8%20%D0%BB%D1%8E%D0%B1%D0%BB%D1%8E.%20%D0%9D%D0%BE%20%D0%B2%D0%BE%D0%BE%D0%B1%D1%89%D0%B5%2C%20%D0%BD%D0%B0%D0%B8%D0%B1%D0%BE%D0%BB%D0%B5%D0%B5%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B5%D1%81%D0%BD%D1%8B%D0%BC%20%D0%B4%D0%BB%D1%8F%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B2%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%20%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%20%D1%81%20%D0%BB%D1%8E%D0%B4%D1%8C%D0%BC%D0%B8%2C%20%D1%81%20%D0%B8%D1%85%20%D1%87%D1%83%D0%B2%D1%81%D1%82%D0%B2%D0%B0%D0%BC%D0%B8%2C%20%D1%8D%D0%BC%D0%BE%D1%86%D0%B8%D1%8F%D0%BC%D0%B8%20%D0%B8%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8%2C%20%D1%81%20%D1%82%D0%B5%D0%BC%2C%20%D1%87%D1%82%D0%BE%20%D0%BE%D1%81%D1%82%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B5%D0%B2%D1%8B%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%85%2C%20%D0%BD%D0%BE%20%D0%BF%D1%80%D0%BE%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D1%84%D0%BE%D1%82%D0%BE%D0%B1%D1%83%D0%BC%D0%B0%D0%B3%D0%B5.%20%D0%92%D0%B5%D0%B4%D1%8C%20%D0%B8%D0%B4%D0%B5%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F%20%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%B2%20%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%B8%D0%BD%D1%81%D1%82%D0%B2%D0%B5%20%D1%81%D0%BB%D1%83%D1%87%D0%B0%D0%B5%D0%B2%20%D0%BD%D0%B5%20%D1%81%D0%BE%D0%B1%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%D0%BC%20%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%BC%20%D1%81%D0%BE%D0%B2%D0%B5%D1%80%D1%88%D0%B5%D0%BD%D1%81%D1%82%D0%B2%D0%BE%D0%BC%2C%20%D0%B0%20%D1%82%D0%B5%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%BE%D1%82%D0%BA%D0%BB%D0%B8%D0%BA%20%D0%BE%D0%BD%D0%B0%20%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B0%D0%B5%D1%82%20%D0%B2%20%D0%BD%D0%B0%D1%88%D0%B5%D0%BC%20%D0%BF%D0%BE%D0%B4%D1%81%D0%BE%D0%B7%D0%BD%D0%B0%D0%BD%D0%B8%D0%B8.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D1%80%D0%BE%D1%88%D1%83%20%D0%BF%D1%80%D0%BE%D1%89%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%B5%D1%81%D0%BB%D0%B8%20%D1%83%D1%82%D0%BE%D0%BC%D0%B8%D0%BB%20%D0%92%D0%B0%D1%81%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8!%20%D0%9F%D0%BE%20%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8E%20%D1%8F%20-%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA-%D0%BB%D0%B0%D0%B7%D0%B5%D1%80%D1%89%D0%B8%D0%BA%2C%20%D0%BD%D0%B5%D1%81%D0%BA%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D0%BB%D0%B5%D1%82%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D1%83%D0%BF%D0%BE%D1%80%D0%BD%D0%BE%20%D1%83%D1%87%D0%B8%D0%BB%20%D1%81%D1%82%D1%83%D0%B4%D0%B5%D0%BD%D1%82%D0%BE%D0%B2%20%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BC%20%D0%BE%D0%BF%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D1%85%20%D1%8F%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B9%20%D0%B8%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA%D0%B5%20%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2%20%D1%81%D1%82%D0%B8%D0%BC%D1%83%D0%BB%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B3%D0%BE%20%D0%B8%D0%B7%D0%BB%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%BE%D1%82%D1%87%D0%B0%D1%81%D1%82%D0%B8%20%D0%BF%D0%BE%D1%8D%D1%82%D0%BE%D0%BC%D1%83%20%D0%BC%D0%BD%D0%B5%20%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%20%3A)%20%D0%A0%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D0%BD%D0%B5%20%D0%BC%D0%BE%D0%B3%20%D0%BD%D0%B5%20%D0%BF%D0%BE%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D1%8C%D1%81%D1%8F%20%D1%81%20%D0%92%D0%B0%D0%BC%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B8%D0%BC%D0%B8%20%D0%B8%D0%B4%D0%B5%D1%8F%D0%BC%D0%B8%20%D0%BE%D1%82%D0%BD%D0%BE%D1%81%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BD%D0%BE%2C%20%D0%B4%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D0%BD%D0%B0%D0%B3%D0%BB%D1%8F%D0%B4%D0%BD%D0%B5%D0%B5%20%D0%BE%D0%B1%20%D1%8D%D1%82%D0%BE%D0%BC%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B6%D1%83%D1%82%20%D0%BC%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%A3%D0%B4%D0%B0%D1%87%D0%B8%20%D0%92%D0%B0%D0%BC%20%D0%B8%20%D1%85%D0%BE%D1%80%D0%BE%D1%88%D0%B8%D1%85%20%D1%81%D0%BD%D0%B8%D0%BC%D0%BA%D0%BE%D0%B2!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%91%D1%83%D0%B4%D0%B5%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%B2%D1%8F%D0%B7%D0%B8!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%98%D1%81%D0%BA%D1%80%D0%B5%D0%BD%D0%BD%D0%B5%20%D0%92%D0%B0%D1%88%2C%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%20%D0%9A%D1%80%D1%83%D0%B3%D0%BB%D0%BE%D0%B2.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E';
echo urldecode($str);
?>
</body>
</html>
This works fine. I uploaded to the clients host and again. It display's incorrectly. Does anyone know why this is? Does urldecode change between PHP versions? Where do I go next to troubleshoot this?
Try this header("Content-Type: text/html; charset=UTF-8");
<?php
header("Content-Type: text/html; charset=UTF-8");
$str = '%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B4%D1%80%D0%B0%D0%B2%D1%81%D1%82%D0%B2%D1%83%D0%B9%D1%82%D0%B5!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9C%D0%B5%D0%BD%D1%8F%20%D0%B7%D0%BE%D0%B2%D1%83%D1%82%20%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%2C%20%D1%80%D0%B0%D0%B4%20%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82%D1%81%D1%82%D0%B2%D0%BE%D0%B2%D0%B0%D1%82%D1%8C%20%D0%92%D0%B0%D1%81%20%D0%BD%D0%B0%20%D0%BC%D0%BE%D0%B5%D0%BC%20%D1%81%D0%B0%D0%B9%D1%82%D0%B5!%20%D0%9A%D0%B0%D0%BA%20%D0%92%D1%8B%20%D1%83%D0%B6%D0%B5%20%D0%B4%D0%BE%D0%B3%D0%B0%D0%B4%D0%B0%D0%BB%D0%B8%D1%81%D1%8C%2C%20%D1%8F%20-%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84.%20%D0%9A%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BA%D0%BE%D0%B3%D0%B4%D0%B0-%D1%82%D0%BE%20%D0%B4%D0%B0%D0%B2%D0%BD%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%B1%D1%8B%D0%BB%D0%BE%20%D0%BC%D0%BE%D0%B8%D0%BC%20%D1%85%D0%BE%D0%B1%D0%B1%D0%B8%2C%20%D0%BD%D0%BE%20%D1%83%D0%B6%D0%B5%20%D1%81%202005%20%D0%B3%D0%BE%D0%B4%D0%B0%20%D1%8D%D1%82%D0%BE%20%D0%BC%D0%BE%D1%8F%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D1%8F.%20%D0%98%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D1%80%D0%B8%D1%8F%D1%82%D0%BD%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%B5%D0%B9%20%D1%81%D1%82%D0%B0%D0%BB%D0%BE%20%D0%BB%D1%8E%D0%B1%D0%B8%D0%BC%D0%BE%D0%B5%20%D0%B4%D0%B5%D0%BB%D0%BE!%20%D0%9D%D0%B0%20%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B9%20%D0%BC%D0%BE%D0%BC%D0%B5%D0%BD%D1%82%20%D1%8F%20%D0%B6%D0%B8%D0%B2%D1%83%20%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%B2%20%D0%9F%D1%80%D0%B0%D0%B3%D0%B5.%20%D0%98%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B5%D0%B7%D0%B4%20%D0%B2%20%D1%8D%D1%82%D0%BE%D1%82%20%D1%83%D0%B4%D0%B8%D0%B2%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9%20%D0%B3%D0%BE%D1%80%D0%BE%D0%B4%20%D0%B2%202006%20%D0%B3%D0%BE%D0%B4%D1%83%20%D0%B2%D0%BE%20%D0%BC%D0%BD%D0%BE%D0%B3%D0%BE%D0%BC%20%D0%BF%D0%BE%D0%B2%D0%BB%D0%B8%D1%8F%D0%BB%20%D0%BD%D0%B0%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%8F%20%D1%81%D0%BA%D0%BE%D0%BD%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BB%20%D1%81%D0%B2%D0%BE%D0%B5%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%20%20%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B8%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B5%20%D1%81%D0%B5%D0%B9%D1%87%D0%B0%D1%81%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%B1%D1%83%D1%80%D0%BD%D0%BE%D0%B5%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D1%82%D0%B8%D0%B5%20-%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B9%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8!%20%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B0%20%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BD%D0%B8%D0%B5%206%20%D0%BB%D0%B5%D1%82%20%D1%8F%20%D1%81%D0%BD%D1%8F%D0%BB%20%D1%81%D0%BE%D1%82%D0%BD%D0%B8%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%2C%20%D1%87%D1%82%D0%BE%2C%20%D0%BA%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BD%D0%B0%D0%B7%D0%B2%D0%B0%D1%82%D1%8C%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%8B%D0%BC%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%BE%D0%BC!%20%D0%AD%D1%82%D0%BE%D1%82%20%D0%BE%D0%BF%D1%8B%D1%82%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BC%D0%BD%D0%B5%20%D0%B2%20%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B9%20%D0%BC%D0%B5%D1%80%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B0%D1%82%D1%8C%20%D0%B8%20%D1%81%D1%83%D0%B4%D0%B8%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F.%20%D0%94%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D1%87%D1%82%D0%BE%20%D0%BC%D0%BE%D0%B8%20%D1%81%D0%BE%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D1%8F%20%D0%BC%D0%BE%D0%B3%D1%83%D1%82%20%D0%BF%D0%BE%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%D1%81%D1%8F%20%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%82%D0%B5%D0%BC%20%D0%B8%D0%B7%20%D0%92%D0%B0%D1%81%2C%20%D0%BA%D1%82%D0%BE%20%D0%B7%D0%B0%D0%BD%D0%B8%D0%BC%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BF%D0%BB%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC%20%D1%81%D0%B2%D0%BE%D0%B5%D0%B3%D0%BE%20%D1%82%D0%BE%D1%80%D0%B6%D0%B5%D1%81%D1%82%D0%B2%D0%B0.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%230000FF%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D2787%22%20TARGET%3D%22_blank%22%3E%D0%92%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B2%D1%8C%D1%8E%20%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0%D0%BD%D0%B8%D0%B8%20Happywedding%3C%2FA%3E%3CFONT%20COLOR%3D%22%23000000%22%3E%20%20%D1%8F%20%D0%BF%D0%BE%D1%81%D1%82%D0%B0%D1%80%D0%B0%D0%BB%D1%81%D1%8F%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%B2%20%D0%BF%D1%80%D0%B8%D0%BD%D1%86%D0%B8%D0%BF%D0%B5%20%D0%B2%D0%B8%D0%B6%D1%83%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%83%D1%8E%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8E.%3CFONT%20COLOR%3D%22%230000FF%22%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9A%D1%80%D0%BE%D0%BC%D0%B5%20%D1%82%D0%BE%D0%B3%D0%BE%2C%20%D1%81%D0%BE%D0%B2%D0%B5%D1%82%D1%83%D1%8E%20%D0%92%D0%B0%D0%BC%20%D0%BE%D0%B1%D1%80%D0%B0%D1%82%D0%B8%D1%82%D1%8C%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%3CFONT%20COLOR%3D%22%230000FF%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D812%22%20TARGET%3D%22_blank%22%3E%20%D1%81%D1%82%D0%B0%D1%82%D1%8C%D1%8E%2C%20%D0%BF%D0%BE%D1%81%D0%B2%D1%8F%D1%89%D0%B5%D0%BD%D0%BD%D1%83%D1%8E%20%D1%82%D0%B5%D0%BC%D0%B5%20%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D0%B0%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%26quot%3B%D0%92%D0%B0%D1%88%D0%B5%D0%B3%D0%BE%26quot%3B%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B3%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B0%3C%2FA%3E%3C%2FFONT%3E%20-%20%D1%8F%20%D0%BD%D0%B5%20%D0%BF%D0%BE%20%D0%BD%D0%B0%D1%81%D0%BB%D1%8B%D1%88%D0%BA%D0%B5%20%D0%B7%D0%BD%D0%B0%D1%8E%2C%20%D0%BA%D0%B0%D0%BA%20%D0%BD%D0%B5%D0%BF%D1%80%D0%BE%D1%81%D1%82%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%BE%D0%BA%D0%B0%D0%B7%D1%8B%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B5...%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9D%D0%BE%2C%20%D1%80%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%BD%D0%B5%20%D1%82%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D1%81%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D1%8C%D0%B1%D0%B0%D0%BC%D0%B8.%20%D0%9C%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B%20%D0%92%D1%8B%20%D0%BC%D0%BE%D0%B6%D0%B5%D1%82%D0%B5%20%D1%83%D0%B2%D0%B8%D0%B4%D0%B5%D1%82%D1%8C%20%D0%B8%20%D0%B2%20%D0%BC%D0%BE%D0%B4%D0%BD%D1%8B%D1%85%20%D0%B6%D1%83%D1%80%D0%BD%D0%B0%D0%BB%D0%B0%D1%85%2C%20%D0%B8%20%D0%B2%20%D1%80%D0%B5%D0%BA%D0%BB%D0%B0%D0%BC%D0%B5%2C%20%D0%B8%20%D0%BD%D0%B0%20%D0%BE%D0%B1%D0%BB%D0%BE%D0%B6%D0%BA%D0%B0%D1%85%20%D0%BC%D1%83%D0%B7%D1%8B%D0%BA%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85%20%D0%B0%D0%BB%D1%8C%D0%B1%D0%BE%D0%BC%D0%BE%D0%B2%2C%20%D0%B8%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D0%BD%D0%B0%20%D1%8D%D1%82%D0%B8%D0%BA%D0%B5%D1%82%D0%BA%D0%B0%D1%85%20%D0%BA%D0%BE%D1%80%D0%BC%D0%BE%D0%B2%20%D0%B4%D0%BB%D1%8F%20%D0%B6%D0%B8%D0%B2%D0%BE%D1%82%D0%BD%D1%8B%D1%85!%20%D0%AF%20-%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%BE%D0%BD%D0%B0%D0%BB%20%D0%B8%20%D0%B4%D0%B5%D0%BB%D0%B0%D1%8E%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%83%D0%BC%D0%B5%D1%8E%20%D0%B8%20%D0%BB%D1%8E%D0%B1%D0%BB%D1%8E.%20%D0%9D%D0%BE%20%D0%B2%D0%BE%D0%BE%D0%B1%D1%89%D0%B5%2C%20%D0%BD%D0%B0%D0%B8%D0%B1%D0%BE%D0%BB%D0%B5%D0%B5%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B5%D1%81%D0%BD%D1%8B%D0%BC%20%D0%B4%D0%BB%D1%8F%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B2%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%20%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%20%D1%81%20%D0%BB%D1%8E%D0%B4%D1%8C%D0%BC%D0%B8%2C%20%D1%81%20%D0%B8%D1%85%20%D1%87%D1%83%D0%B2%D1%81%D1%82%D0%B2%D0%B0%D0%BC%D0%B8%2C%20%D1%8D%D0%BC%D0%BE%D1%86%D0%B8%D1%8F%D0%BC%D0%B8%20%D0%B8%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8%2C%20%D1%81%20%D1%82%D0%B5%D0%BC%2C%20%D1%87%D1%82%D0%BE%20%D0%BE%D1%81%D1%82%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B5%D0%B2%D1%8B%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%85%2C%20%D0%BD%D0%BE%20%D0%BF%D1%80%D0%BE%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D1%84%D0%BE%D1%82%D0%BE%D0%B1%D1%83%D0%BC%D0%B0%D0%B3%D0%B5.%20%D0%92%D0%B5%D0%B4%D1%8C%20%D0%B8%D0%B4%D0%B5%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F%20%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%B2%20%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%B8%D0%BD%D1%81%D1%82%D0%B2%D0%B5%20%D1%81%D0%BB%D1%83%D1%87%D0%B0%D0%B5%D0%B2%20%D0%BD%D0%B5%20%D1%81%D0%BE%D0%B1%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%D0%BC%20%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%BC%20%D1%81%D0%BE%D0%B2%D0%B5%D1%80%D1%88%D0%B5%D0%BD%D1%81%D1%82%D0%B2%D0%BE%D0%BC%2C%20%D0%B0%20%D1%82%D0%B5%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%BE%D1%82%D0%BA%D0%BB%D0%B8%D0%BA%20%D0%BE%D0%BD%D0%B0%20%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B0%D0%B5%D1%82%20%D0%B2%20%D0%BD%D0%B0%D1%88%D0%B5%D0%BC%20%D0%BF%D0%BE%D0%B4%D1%81%D0%BE%D0%B7%D0%BD%D0%B0%D0%BD%D0%B8%D0%B8.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D1%80%D0%BE%D1%88%D1%83%20%D0%BF%D1%80%D0%BE%D1%89%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%B5%D1%81%D0%BB%D0%B8%20%D1%83%D1%82%D0%BE%D0%BC%D0%B8%D0%BB%20%D0%92%D0%B0%D1%81%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8!%20%D0%9F%D0%BE%20%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8E%20%D1%8F%20-%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA-%D0%BB%D0%B0%D0%B7%D0%B5%D1%80%D1%89%D0%B8%D0%BA%2C%20%D0%BD%D0%B5%D1%81%D0%BA%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D0%BB%D0%B5%D1%82%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D1%83%D0%BF%D0%BE%D1%80%D0%BD%D0%BE%20%D1%83%D1%87%D0%B8%D0%BB%20%D1%81%D1%82%D1%83%D0%B4%D0%B5%D0%BD%D1%82%D0%BE%D0%B2%20%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BC%20%D0%BE%D0%BF%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D1%85%20%D1%8F%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B9%20%D0%B8%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA%D0%B5%20%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2%20%D1%81%D1%82%D0%B8%D0%BC%D1%83%D0%BB%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B3%D0%BE%20%D0%B8%D0%B7%D0%BB%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%BE%D1%82%D1%87%D0%B0%D1%81%D1%82%D0%B8%20%D0%BF%D0%BE%D1%8D%D1%82%D0%BE%D0%BC%D1%83%20%D0%BC%D0%BD%D0%B5%20%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%20%3A)%20%D0%A0%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D0%BD%D0%B5%20%D0%BC%D0%BE%D0%B3%20%D0%BD%D0%B5%20%D0%BF%D0%BE%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D1%8C%D1%81%D1%8F%20%D1%81%20%D0%92%D0%B0%D0%BC%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B8%D0%BC%D0%B8%20%D0%B8%D0%B4%D0%B5%D1%8F%D0%BC%D0%B8%20%D0%BE%D1%82%D0%BD%D0%BE%D1%81%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BD%D0%BE%2C%20%D0%B4%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D0%BD%D0%B0%D0%B3%D0%BB%D1%8F%D0%B4%D0%BD%D0%B5%D0%B5%20%D0%BE%D0%B1%20%D1%8D%D1%82%D0%BE%D0%BC%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B6%D1%83%D1%82%20%D0%BC%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%A3%D0%B4%D0%B0%D1%87%D0%B8%20%D0%92%D0%B0%D0%BC%20%D0%B8%20%D1%85%D0%BE%D1%80%D0%BE%D1%88%D0%B8%D1%85%20%D1%81%D0%BD%D0%B8%D0%BC%D0%BA%D0%BE%D0%B2!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%91%D1%83%D0%B4%D0%B5%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%B2%D1%8F%D0%B7%D0%B8!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%98%D1%81%D0%BA%D1%80%D0%B5%D0%BD%D0%BD%D0%B5%20%D0%92%D0%B0%D1%88%2C%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%20%D0%9A%D1%80%D1%83%D0%B3%D0%BB%D0%BE%D0%B2.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E';
echo urldecode($str);
Maybe you need to change the character encoding in the text editor to UTF-8 that you're using. Here is what it looks like in Programmers Notepad. Try to Google how to change the character encoding in your text editor.
<!DOCTYPE html>
<meta Content-Type= "text/html"; charset='UTF-8'>
<?php
$str = '%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B4%D1%80%D0%B0%D0%B2%D1%81%D1%82%D0%B2%D1%83%D0%B9%D1%82%D0%B5!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9C%D0%B5%D0%BD%D1%8F%20%D0%B7%D0%BE%D0%B2%D1%83%D1%82%20%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%2C%20%D1%80%D0%B0%D0%B4%20%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82%D1%81%D1%82%D0%B2%D0%BE%D0%B2%D0%B0%D1%82%D1%8C%20%D0%92%D0%B0%D1%81%20%D0%BD%D0%B0%20%D0%BC%D0%BE%D0%B5%D0%BC%20%D1%81%D0%B0%D0%B9%D1%82%D0%B5!%20%D0%9A%D0%B0%D0%BA%20%D0%92%D1%8B%20%D1%83%D0%B6%D0%B5%20%D0%B4%D0%BE%D0%B3%D0%B0%D0%B4%D0%B0%D0%BB%D0%B8%D1%81%D1%8C%2C%20%D1%8F%20-%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84.%20%D0%9A%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BA%D0%BE%D0%B3%D0%B4%D0%B0-%D1%82%D0%BE%20%D0%B4%D0%B0%D0%B2%D0%BD%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%B1%D1%8B%D0%BB%D0%BE%20%D0%BC%D0%BE%D0%B8%D0%BC%20%D1%85%D0%BE%D0%B1%D0%B1%D0%B8%2C%20%D0%BD%D0%BE%20%D1%83%D0%B6%D0%B5%20%D1%81%202005%20%D0%B3%D0%BE%D0%B4%D0%B0%20%D1%8D%D1%82%D0%BE%20%D0%BC%D0%BE%D1%8F%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D1%8F.%20%D0%98%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D1%80%D0%B8%D1%8F%D1%82%D0%BD%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%B5%D0%B9%20%D1%81%D1%82%D0%B0%D0%BB%D0%BE%20%D0%BB%D1%8E%D0%B1%D0%B8%D0%BC%D0%BE%D0%B5%20%D0%B4%D0%B5%D0%BB%D0%BE!%20%D0%9D%D0%B0%20%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D0%B9%20%D0%BC%D0%BE%D0%BC%D0%B5%D0%BD%D1%82%20%D1%8F%20%D0%B6%D0%B8%D0%B2%D1%83%20%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%B2%20%D0%9F%D1%80%D0%B0%D0%B3%D0%B5.%20%D0%98%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B5%D0%B7%D0%B4%20%D0%B2%20%D1%8D%D1%82%D0%BE%D1%82%20%D1%83%D0%B4%D0%B8%D0%B2%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9%20%D0%B3%D0%BE%D1%80%D0%BE%D0%B4%20%D0%B2%202006%20%D0%B3%D0%BE%D0%B4%D1%83%20%D0%B2%D0%BE%20%D0%BC%D0%BD%D0%BE%D0%B3%D0%BE%D0%BC%20%D0%BF%D0%BE%D0%B2%D0%BB%D0%B8%D1%8F%D0%BB%20%D0%BD%D0%B0%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%8F%20%D1%81%D0%BA%D0%BE%D0%BD%D1%86%D0%B5%D0%BD%D1%82%D1%80%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BB%20%D1%81%D0%B2%D0%BE%D0%B5%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%20%20%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B8%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B5%20%D1%81%D0%B5%D0%B9%D1%87%D0%B0%D1%81%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%20%D0%BE%D1%81%D0%BE%D0%B1%D0%B5%D0%BD%D0%BD%D0%BE%20%D0%B1%D1%83%D1%80%D0%BD%D0%BE%D0%B5%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D1%82%D0%B8%D0%B5%20-%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B9%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8!%20%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%97%D0%B0%20%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BD%D0%B8%D0%B5%206%20%D0%BB%D0%B5%D1%82%20%D1%8F%20%D1%81%D0%BD%D1%8F%D0%BB%20%D1%81%D0%BE%D1%82%D0%BD%D0%B8%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%2C%20%D1%87%D1%82%D0%BE%2C%20%D0%BA%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D0%BE%2C%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BD%D0%B0%D0%B7%D0%B2%D0%B0%D1%82%D1%8C%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%8B%D0%BC%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%BE%D0%BC!%20%D0%AD%D1%82%D0%BE%D1%82%20%D0%BE%D0%BF%D1%8B%D1%82%20%D0%BF%D0%BE%D0%B7%D0%B2%D0%BE%D0%BB%D1%8F%D0%B5%D1%82%20%D0%BC%D0%BD%D0%B5%20%D0%B2%20%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%B9%20%D0%BC%D0%B5%D1%80%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B0%D1%82%D1%8C%20%D0%B8%20%D1%81%D1%83%D0%B4%D0%B8%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%20%D1%80%D0%B0%D0%B7%D0%B2%D0%B8%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F.%20%D0%94%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D1%87%D1%82%D0%BE%20%D0%BC%D0%BE%D0%B8%20%D1%81%D0%BE%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D1%8F%20%D0%BC%D0%BE%D0%B3%D1%83%D1%82%20%D0%BF%D0%BE%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%D1%81%D1%8F%20%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%82%D0%B5%D0%BC%20%D0%B8%D0%B7%20%D0%92%D0%B0%D1%81%2C%20%D0%BA%D1%82%D0%BE%20%D0%B7%D0%B0%D0%BD%D0%B8%D0%BC%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BF%D0%BB%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC%20%D1%81%D0%B2%D0%BE%D0%B5%D0%B3%D0%BE%20%D1%82%D0%BE%D1%80%D0%B6%D0%B5%D1%81%D1%82%D0%B2%D0%B0.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%230000FF%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D2787%22%20TARGET%3D%22_blank%22%3E%D0%92%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B2%D1%8C%D1%8E%20%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0%D0%BD%D0%B8%D0%B8%20Happywedding%3C%2FA%3E%3CFONT%20COLOR%3D%22%23000000%22%3E%20%20%D1%8F%20%D0%BF%D0%BE%D1%81%D1%82%D0%B0%D1%80%D0%B0%D0%BB%D1%81%D1%8F%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D1%82%D1%8C%20%D0%BE%20%D1%82%D0%BE%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%B2%20%D0%BF%D1%80%D0%B8%D0%BD%D1%86%D0%B8%D0%BF%D0%B5%20%D0%B2%D0%B8%D0%B6%D1%83%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D1%83%D1%8E%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8E.%3CFONT%20COLOR%3D%22%230000FF%22%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9A%D1%80%D0%BE%D0%BC%D0%B5%20%D1%82%D0%BE%D0%B3%D0%BE%2C%20%D1%81%D0%BE%D0%B2%D0%B5%D1%82%D1%83%D1%8E%20%D0%92%D0%B0%D0%BC%20%D0%BE%D0%B1%D1%80%D0%B0%D1%82%D0%B8%D1%82%D1%8C%20%D0%B2%D0%BD%D0%B8%D0%BC%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BD%D0%B0%3CFONT%20COLOR%3D%22%230000FF%22%3E%3CA%20HREF%3D%22http%3A%2F%2Fwww.happywedding.cz%2Fblog%2F%3Fp%3D812%22%20TARGET%3D%22_blank%22%3E%20%D1%81%D1%82%D0%B0%D1%82%D1%8C%D1%8E%2C%20%D0%BF%D0%BE%D1%81%D0%B2%D1%8F%D1%89%D0%B5%D0%BD%D0%BD%D1%83%D1%8E%20%D1%82%D0%B5%D0%BC%D0%B5%20%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D0%B0%20%D0%B8%D0%BC%D0%B5%D0%BD%D0%BD%D0%BE%20%26quot%3B%D0%92%D0%B0%D1%88%D0%B5%D0%B3%D0%BE%26quot%3B%20%D1%81%D0%B2%D0%B0%D0%B4%D0%B5%D0%B1%D0%BD%D0%BE%D0%B3%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B0%3C%2FA%3E%3C%2FFONT%3E%20-%20%D1%8F%20%D0%BD%D0%B5%20%D0%BF%D0%BE%20%D0%BD%D0%B0%D1%81%D0%BB%D1%8B%D1%88%D0%BA%D0%B5%20%D0%B7%D0%BD%D0%B0%D1%8E%2C%20%D0%BA%D0%B0%D0%BA%20%D0%BD%D0%B5%D0%BF%D1%80%D0%BE%D1%81%D1%82%D0%BE%20%D1%8D%D1%82%D0%BE%20%D0%BE%D0%BA%D0%B0%D0%B7%D1%8B%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B5...%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9D%D0%BE%2C%20%D1%80%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%20%D0%BD%D0%B5%20%D1%82%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D1%81%D0%BE%20%D1%81%D0%B2%D0%B0%D0%B4%D1%8C%D0%B1%D0%B0%D0%BC%D0%B8.%20%D0%9C%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B%20%D0%92%D1%8B%20%D0%BC%D0%BE%D0%B6%D0%B5%D1%82%D0%B5%20%D1%83%D0%B2%D0%B8%D0%B4%D0%B5%D1%82%D1%8C%20%D0%B8%20%D0%B2%20%D0%BC%D0%BE%D0%B4%D0%BD%D1%8B%D1%85%20%D0%B6%D1%83%D1%80%D0%BD%D0%B0%D0%BB%D0%B0%D1%85%2C%20%D0%B8%20%D0%B2%20%D1%80%D0%B5%D0%BA%D0%BB%D0%B0%D0%BC%D0%B5%2C%20%D0%B8%20%D0%BD%D0%B0%20%D0%BE%D0%B1%D0%BB%D0%BE%D0%B6%D0%BA%D0%B0%D1%85%20%D0%BC%D1%83%D0%B7%D1%8B%D0%BA%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85%20%D0%B0%D0%BB%D1%8C%D0%B1%D0%BE%D0%BC%D0%BE%D0%B2%2C%20%D0%B8%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D0%BD%D0%B0%20%D1%8D%D1%82%D0%B8%D0%BA%D0%B5%D1%82%D0%BA%D0%B0%D1%85%20%D0%BA%D0%BE%D1%80%D0%BC%D0%BE%D0%B2%20%D0%B4%D0%BB%D1%8F%20%D0%B6%D0%B8%D0%B2%D0%BE%D1%82%D0%BD%D1%8B%D1%85!%20%D0%AF%20-%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%81%D0%B8%D0%BE%D0%BD%D0%B0%D0%BB%20%D0%B8%20%D0%B4%D0%B5%D0%BB%D0%B0%D1%8E%20%D1%82%D0%BE%2C%20%D1%87%D1%82%D0%BE%20%D1%83%D0%BC%D0%B5%D1%8E%20%D0%B8%20%D0%BB%D1%8E%D0%B1%D0%BB%D1%8E.%20%D0%9D%D0%BE%20%D0%B2%D0%BE%D0%BE%D0%B1%D1%89%D0%B5%2C%20%D0%BD%D0%B0%D0%B8%D0%B1%D0%BE%D0%BB%D0%B5%D0%B5%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B5%D1%81%D0%BD%D1%8B%D0%BC%20%D0%B4%D0%BB%D1%8F%20%D0%BC%D0%B5%D0%BD%D1%8F%20%D0%B2%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%20%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%20%D1%81%20%D0%BB%D1%8E%D0%B4%D1%8C%D0%BC%D0%B8%2C%20%D1%81%20%D0%B8%D1%85%20%D1%87%D1%83%D0%B2%D1%81%D1%82%D0%B2%D0%B0%D0%BC%D0%B8%2C%20%D1%8D%D0%BC%D0%BE%D1%86%D0%B8%D1%8F%D0%BC%D0%B8%20%D0%B8%20%D0%BF%D0%B5%D1%80%D0%B5%D0%B6%D0%B8%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8%2C%20%D1%81%20%D1%82%D0%B5%D0%BC%2C%20%D1%87%D1%82%D0%BE%20%D0%BE%D1%81%D1%82%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B5%D0%B2%D1%8B%D1%81%D0%BA%D0%B0%D0%B7%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%85%2C%20%D0%BD%D0%BE%20%D0%BF%D1%80%D0%BE%D1%8F%D0%B2%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%BD%D0%B0%20%D1%84%D0%BE%D1%82%D0%BE%D0%B1%D1%83%D0%BC%D0%B0%D0%B3%D0%B5.%20%D0%92%D0%B5%D0%B4%D1%8C%20%D0%B8%D0%B4%D0%B5%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0%D1%8F%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F%20%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D1%8F%D0%B5%D1%82%D1%81%D1%8F%20%D0%B2%20%D0%B1%D0%BE%D0%BB%D1%8C%D1%88%D0%B8%D0%BD%D1%81%D1%82%D0%B2%D0%B5%20%D1%81%D0%BB%D1%83%D1%87%D0%B0%D0%B5%D0%B2%20%D0%BD%D0%B5%20%D1%81%D0%BE%D0%B1%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%D0%BC%20%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%BC%20%D1%81%D0%BE%D0%B2%D0%B5%D1%80%D1%88%D0%B5%D0%BD%D1%81%D1%82%D0%B2%D0%BE%D0%BC%2C%20%D0%B0%20%D1%82%D0%B5%D0%BC%2C%20%D0%BA%D0%B0%D0%BA%D0%BE%D0%B9%20%D0%BE%D1%82%D0%BA%D0%BB%D0%B8%D0%BA%20%D0%BE%D0%BD%D0%B0%20%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B0%D0%B5%D1%82%20%D0%B2%20%D0%BD%D0%B0%D1%88%D0%B5%D0%BC%20%D0%BF%D0%BE%D0%B4%D1%81%D0%BE%D0%B7%D0%BD%D0%B0%D0%BD%D0%B8%D0%B8.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D1%80%D0%BE%D1%88%D1%83%20%D0%BF%D1%80%D0%BE%D1%89%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%B5%D1%81%D0%BB%D0%B8%20%D1%83%D1%82%D0%BE%D0%BC%D0%B8%D0%BB%20%D0%92%D0%B0%D1%81%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%BC%D0%B8%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8!%20%D0%9F%D0%BE%20%D0%BE%D0%B1%D1%80%D0%B0%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8E%20%D1%8F%20-%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA-%D0%BB%D0%B0%D0%B7%D0%B5%D1%80%D1%89%D0%B8%D0%BA%2C%20%D0%BD%D0%B5%D1%81%D0%BA%D0%BE%D0%BB%D1%8C%D0%BA%D0%BE%20%D0%BB%D0%B5%D1%82%20%D0%B4%D0%B0%D0%B6%D0%B5%20%D1%83%D0%BF%D0%BE%D1%80%D0%BD%D0%BE%20%D1%83%D1%87%D0%B8%D0%BB%20%D1%81%D1%82%D1%83%D0%B4%D0%B5%D0%BD%D1%82%D0%BE%D0%B2%20%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BC%20%D0%BE%D0%BF%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D1%85%20%D1%8F%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B9%20%D0%B8%20%D1%84%D0%B8%D0%B7%D0%B8%D0%BA%D0%B5%20%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2%20%D1%81%D1%82%D0%B8%D0%BC%D1%83%D0%BB%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B3%D0%BE%20%D0%B8%D0%B7%D0%BB%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%2C%20%D0%BE%D1%82%D1%87%D0%B0%D1%81%D1%82%D0%B8%20%D0%BF%D0%BE%D1%8D%D1%82%D0%BE%D0%BC%D1%83%20%D0%BC%D0%BD%D0%B5%20%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%20%D0%BF%D1%80%D0%BE%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5%20%D1%80%D0%B0%D1%81%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D1%8F%20%3A)%20%D0%A0%D0%B0%D0%B7%D1%83%D0%BC%D0%B5%D0%B5%D1%82%D1%81%D1%8F%2C%20%D1%8F%20%D0%BD%D0%B5%20%D0%BC%D0%BE%D0%B3%20%D0%BD%D0%B5%20%D0%BF%D0%BE%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D1%8C%D1%81%D1%8F%20%D1%81%20%D0%92%D0%B0%D0%BC%D0%B8%20%D1%81%D0%B2%D0%BE%D0%B8%D0%BC%D0%B8%20%D0%B8%D0%B4%D0%B5%D1%8F%D0%BC%D0%B8%20%D0%BE%D1%82%D0%BD%D0%BE%D1%81%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%20%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8%2C%20%D0%BD%D0%BE%2C%20%D0%B4%D1%83%D0%BC%D0%B0%D1%8E%2C%20%D0%BD%D0%B0%D0%B3%D0%BB%D1%8F%D0%B4%D0%BD%D0%B5%D0%B5%20%D0%BE%D0%B1%20%D1%8D%D1%82%D0%BE%D0%BC%20%D1%80%D0%B0%D1%81%D1%81%D0%BA%D0%B0%D0%B6%D1%83%D1%82%20%D0%BC%D0%BE%D0%B8%20%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%A3%D0%B4%D0%B0%D1%87%D0%B8%20%D0%92%D0%B0%D0%BC%20%D0%B8%20%D1%85%D0%BE%D1%80%D0%BE%D1%88%D0%B8%D1%85%20%D1%81%D0%BD%D0%B8%D0%BC%D0%BA%D0%BE%D0%B2!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%91%D1%83%D0%B4%D0%B5%D0%BC%20%D0%BD%D0%B0%20%D1%81%D0%B2%D1%8F%D0%B7%D0%B8!%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%98%D1%81%D0%BA%D1%80%D0%B5%D0%BD%D0%BD%D0%B5%20%D0%92%D0%B0%D1%88%2C%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E%3CTEXTFORMAT%20LEADING%3D%222%22%3E%3CP%20ALIGN%3D%22JUSTIFY%22%3E%3CFONT%20FACE%3D%22Arial%22%20SIZE%3D%2212%22%20COLOR%3D%22%23000000%22%20LETTERSPACING%3D%220%22%20KERNING%3D%220%22%3E%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB%20%D0%9A%D1%80%D1%83%D0%B3%D0%BB%D0%BE%D0%B2.%3C%2FFONT%3E%3C%2FP%3E%3C%2FTEXTFORMAT%3E';
echo urldecode($str);
?>
I'm experiencing very strange problem regarding encoding PHP files in UTF-8. For example, I have two files: index.php and require.php. In index.php files I have this code
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
</head>
<?php
require 'require.php';
?>
<body>
<a></a>
</body>
</html>
In require.php I only have empty PHP tags
<?php
?>
When I open index.php and use Chrome's Element Inspector to see the output HTML I get this:
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
"
"
<a></a>
</body>
</html>
Note the two strange quote marks at the begining of body. If I remove the require statement from PHP code or simply remove a tags they dissapear. What's even stranger is that if I echo something out in require.php file it gets outputed between those two quotes.
The problem goes away if I change encoding from UTF-8 to ANSI in require.php
I've been searching for answer for hours and did not found single person who has same problem.
Try add header('Content-type: text/html; charset=utf-8'); in index.php, and remove the ending '?>' from require.php.
Made worse after adding the header. Although, converting the file to UFT-8 Without BOM is worked for me! Thank you.
If you are sending a plaintext file, you will need this...
<?php
header('Content-type: text/plain; charset=utf-8');
print('中文。');
?>
For sending HTML, you'll need to change the header's "text/plain" to "text/html".
Here is the structure of the web site:
PHP index file
//my class for analyzing the PHP query
$parameter = new LoadParameters();
//what this does is it accesses the database
//and according to the query, figures out what should be
//loaded on the page
//some of the things it sets are:
// $parameter->design - PHP file which contains the design
// HTML code of the page
// $parameter->content - Different PHP file which should be loaded
// inside the design file
$parameter->mysqlGetInfo($_SERVER['QUERY_STRING']);
//load the design file
include($parameter->design);
PHP design file
Just the generic structure. Obviously it has a lot more design elements.
<html>
<head>
...
</head>
<body>
<?php
//this loads the content into the design page
include($parameter->content);
?>
</body>
</html>
Question
So here is the problem I experience. The $parameter->content file is a dynamic PHP file, meaning the content also changes according to the query.
For instance if I have a image pages with queries like ?img=1 and ?img=2, my LoadParameter class will only look at the img part of the query and will know that the content of the page should be image.php. image.php however will look at the query again and figure out exactly what image to load.
This causes issues for me because I want to have a different <title></title> for different images. So my solution was just to set the <title></title> element in the content page. This works but it breaks the XHTML markup validation at W3C because it makes the structure of the site to be the following:
<html>
<head>
...
</head>
<body>
...
<title>sometitle</title>
...
</body>
</html>
And having <title></title> within <body></body> is not allowed.
So how can I change the title without breaking the XHTML markup validation?
Note: I can't use javascript because then Search engines would not be able to see the title of the page. I need to do it directly in PHP.
Thanx in advance.
why not do a second include to perform the title in the proper place?
<html>
<head>
<?php
inlcude($parameter->title);
?>
...
</head>
<body>
<?php
//this loads the content into the design page
include($parameter->content);
?>
</body>
</html>
Can't you just change the PHP code so that you can do something like:
<html>
<head>
<title><? print($parameter->title); ?></title>
</head>
<body>
<?php
//this loads the content into the design page
include($parameter->content);
?>
</body>
</html>
I'd move all of the <head> code into a 'common function' called something like html_head($title) and then have it put the title where it belongs.
Then simply call that function from within the pages and it's fixed.
Don't forget to include the <body> tag in that function, otherwise it won't work!
Elaborating ;)
function html_head($title) {?>
<html>
<head>
<title><?=$title?></title>
<!-- Put whatever you want... here! -->
</head>
<body>
<?}
Then in $parameter->content, call html_head("Title")
It would be easier if $parameter->content could be included without displaying its HTML code, but instead have a $parameter->display (or similar) function that displays the HTML code. That way, you can include the PHP code at the beginning of the file and not worry about being unable to access the title.
<?php
require_once($parameter->content);
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<title><?php echo $parameter->title; ?></title>
</head>
<body>
<?php
echo $parameter->display;
?>
</body>
</html>
This is how I solved the issue.
I changed the PHP design to something like:
//get the content PHP file
//inside the file I set the following variables
//which are used below:
//$parameter->title - the string which contains the title
//$parameter->html - the string which contains the HTML content
include($parameter->content);
//string which will contain the html code of the whole page
$html = <<<EndHere
<html>
<head>
<title>
EndHere;
//add title
$html .= $parameter->title;
$html .= <<<EndHere
</title>
</head>
<body>
EndHere;
//add the content of the page
$html .= $parameter->html;
$html .= <<<EndHere
</body>
</html>
EndHere;
//output the html
echo $html;
And here is the basic structure of the Content PHP file. Since the only page which can possibly include the file is the my design page, I can reference $parameter in it.
//set the title
$parameter->title = "sometitle";
//set the content HTML
$parameter->html = "some HTML here";
It's not a very clean solution but it works fine.