html内嵌php出现乱码,最简单的php程序也通不过
<html><head> <title>connect.php</title></head><body> <strong>This is true.</strong><a href="<?php echo www.baidu.com; ?>">ÕâÊǸö³¬Á´½Ó</a><table> <tr> <td>rrrrrr</td> <td>hhhhhh</td> </tr></table><?php $a=8; $b=4; if($a>$b){ $a++; } $c=$a+$b; echo "a+b=".$c;?></body></html>
<?php $a=8; $b=4; if($a>$b){ $a++; } $c=$a+$b; echo "a+b=".$c;?>
<strong>This is true.</strong><a href="<?php echo www.baidu.com; ?>">超级连接</a>
<table> <tr> <td>rrrrrr</td> <td>hhhhhh</td> </tr></table>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>connect.php</title></head><body> <strong>This is true.</strong><a href="<?php echo www.baidu.com; ?>">超级链接</a><table> <tr> <td>rrrrrr</td> <td>hhhhhh</td> </tr></table><?php $a=8; $b=4; if($a>$b){ $a++; } $c=$a+$b; echo "a+b=".$c;?></body></html>