16 lines
226 B
PHP
16 lines
226 B
PHP
<?php
|
|
|
|
// Used for <title></title>
|
|
$title = "imgpaste by gideonstar";
|
|
|
|
// Displayed text
|
|
$text = "Click or drop image here...";
|
|
|
|
// Writable data directory for images
|
|
$datadir = "i";
|
|
|
|
// Length of filenames
|
|
$hashlen = 8;
|
|
|
|
?>
|