Размер файла: 1.75Kb
<?php header('Content-type: text/html; charset=UTF-8');?>
<!DOCTYPE html>
<html>
<head>
<style>
input:required {
border: 1px solid green;
}
</style>
<title>Скрипт создания Демотиватора. ver:0.4</title>
</head>
<body>
<?php
if(isset($_GET['error'])){
$get = (int)$_GET['error'];
switch($get){
case '1':
echo "Формат файла не поддерживается!";
break;
case '2':
echo "Загрузка файла, не удалась!";
break;
default:
echo "Щяяяяс ваааще не понятно(но ошибка случилась).";
break;
}
}
if(isset($_GET['imagess'])){
?>
<center>
<img src="./data/demotiv/<?=$_GET['imagess']?>" alt="Демотиватор!" >
</center>
<?php }?>
<form style="font-family: Comic Sans MS, Arial, Times New Roman" action="./img_to_dem.php" method="POST" enctype="multipart/form-data" >
<center>
<label>Жирный текст</label><br />
<input type="text" name="text" size="41" MAXLENGTH="25" placeholder="Введите текст" required><br />
<label>Меньше текст</label><br />
<input type="text" name="text2" size="40" MAXLENGTH="20" placeholder="Введите текст"><br />
<label>Картинка(.jpg,.png,.jpeg)</label><br />
<input type="file" name="picture" size="30" style="margin-bottom: 5px;"required><br />
<input type="submit" value="Отправить" style="width:280px;font-family: Comic Sans MS, Arial, Times New Roman;margin-bottom: 5px;"><br />
<input type="reset" value="Очистить" style="width:280px;font-family: Comic Sans MS, Arial, Times New Roman;">
</center>
</form>
</body>
</html>