I am trying to create a multiple file upload on my test site.
My problem is that although I am using English for everything else (register/login form, menus e.t.c), the button of the file upload appears in Greek and I haven't found yet a way to change it.
This is the visual result of the following code: https://i.stack.imgur.com/ZzV66.jpg
Code:
<?php
include 'core/init.php';
admin_protect();
include 'includes/overall/start.php';
?>
<h1>Multiple file upload:</h1>
<form action="uploads/multipleupload.php" method="post" enctype = "multipart/form-data">
<input type="file" name="files[]" multiple>
<input type="submit" value="Upload">
</form>
<?php include 'includes/overall/end.php'; ?>