2023-03-22 23:10:33 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Used for <title></title>
|
|
|
|
$title = "imgpaste by gideonstar";
|
|
|
|
|
|
|
|
// Displayed text
|
2023-03-23 00:35:35 +01:00
|
|
|
$text = "Click or drop image here...";
|
2023-03-22 23:10:33 +01:00
|
|
|
|
|
|
|
// Writable data directory for images
|
|
|
|
$datadir = "i";
|
|
|
|
|
|
|
|
// Length of filenames
|
2023-03-23 07:41:12 +01:00
|
|
|
$length = 8;
|
2023-03-22 23:10:33 +01:00
|
|
|
|
|
|
|
?>
|