uploadScreenGame()
{
?>
<form action="" method="post" enctype="multipart/form-data">
<label>Выбрать JSON</label><br>
<input type="file" name="images" /><br>
<input type="submit" value="Загрузить">
</form>
<?php
if (!empty($_FILES) && isset($_FILES['images']))
{
$file = $_FILES;
$json = file_get_contents($file);
echo '<br>';
echo '<pre>';
echo $json;
echo '</pre>';
}
else
{
echo "Файл не был загружен!";
}
}
```
Хоть текст фаталки покажите
file_get_contents($_FILES["myfile"]["tmp_name"])
Обсуждают сегодня