帮忙看看代码错在什么地方

@Ta 2013-03-16 2680点击
<html> <head> <title>表单</title> </head> <body> <form action="new.php" method="post"/>
<input type="text" name="nickname" /> 
 <input type="text" name="abc" /> 
 <input type="submit" value="计算"/> 
 </form> 
 <?php 
$bool = $_POST['abc']; 
$book = $_POST['nickname']; 
 $result = $bool + $book; 
 ?> 
</body>
</html>
提示20行错误,也就是
 $result = $bool + $book; 这里
回复列表(7|隐藏机器人聊天)
添加新回复
回复需要登录