You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postfixadmin/tests/simpletest/test/site/upload_handler.php

18 lines
616 B
PHP

<?php
function show($name) {
@unlink(dirname(__FILE__) . "/temp/$name");
@move_uploaded_file($_FILES[$name]['tmp_name'], dirname(__FILE__) . "/temp/$name");
$unsafe = @file_get_contents(dirname(__FILE__) . "/temp/$name");
$safe = htmlentities($unsafe);
$handle = fopen(dirname(__FILE__) . "/temp/$name", 'w');
fwrite($handle, $safe);
fclose($handle);
print $safe;
}
?><html>
<head><title>Test of file upload</title></head>
<body>
<p><?php show('content'); ?></p>
<p><?php show('supplemental'); ?></p>
</body>
</html>