- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / modules / weberp / Z_UploadResult.php
blobde94f0f3d44784d8b81f85f97c90b1e9afaf6e5d
1 <?php
2 /* $Revision: 1.5 $ */
4 $PageSecurity=15;
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');