I have installed TideSDK 1.3.1 beta, i have a simple php file:
<?php
header("Content-type: text/plain;charset=utf-8");
?>
<html>
<head>
<meta charset=utf-8>
<title>TideSDK</title>
</head>
<body>
<?php
echo "¡aló";
?>
</body>
</html>
but output is:
<html>
<head>
<meta charset=utf-8>
<title>TideSDK</title>
</head>
<body>
¡aló</body>
</htm
what happen to </html>
at the end of output.
if i change code to echo "¡aló ¡aló";
, last line of output change to </h
.
if i copy code to apache server,output is correct.
is there any mistake in my code, or this is a bug?