我照着书上打了一串代码,功能是让用户输入一串字符然后打印出来。
<html><head><title> Building a From</title></head><body><?php$search=htmlentities($_POST["search"]);$self=htmlentities($_SERVER['PHP_SELF']);if($search===''){ echo(' <form action="'.$self.'" method="POST"> <label>搜索:<input type="text" name="search" /></label> <input type="submit" name="anniu" value="搜索!"/> </form> ');}else{ echo "您输入的是:$search";}?></body></html>
head 里面加上: 这句
不知道是不是头信息原因,如果是的话用PHP的header("Content-Type:text/html;charset=UTF-8");会比输出html标签好一些
nbsp;html>
这两不要忘