blob: 6e9ee556d62bf8fc1b48d2343d3c42de4bb052fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$title = "Upload an image";
if ($user['id'] == 0) $message = "You should create an account so that you can track images you have uploaded.";
$form_message = "A $miniature_width"."px preview will be created.";
$need_file = true;
$fields = array(
array("label" => "Image file : ", "type" => "file", "name" => "image")
);
$validate = "Upload";
require("tpl/general/form.php");
|