ומה זה עושה?
עריכה:
הנה הקוד המלא
PHP קוד:
<form enctype="multipart/form-data" action="index2.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>
<?
$im=$_FILES['userfile']['tmp_name'];
echo $im;
?>