关于文件上传的问题````````````
请问 PHP 在 IIS 下的文件上传代码是什么?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
</head>
<body>
<form action="aa.php" method="post" enctype="multipart/form-data">
<input type="file" name="up">
<input type="submit" value="提交">
</form>
</body>
</html>
aa.php
<?php
echo $up;
?>
提示 up没定义 请问上传代码应该是什么?