6 include('includes/session.inc');
8 $title=_('File Upload Result');
10 include('includes/header.inc');
13 prnMsg( _('The file') . ' ' . $HTTP_POST_FILES['userfile']['name'] . ' ' . _('was uploaded to the server in the /tmp directory and has been renamed temp'),'info');
15 move_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name'], '/tmp/temp');
17 include('includes/footer.inc');