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