5171fded3f
* Simplified storage * various bugfixes
8 lines
264 B
PHP
8 lines
264 B
PHP
<?php
|
|
// The file to which we should store the data
|
|
define('DATA_FILE', 'data');
|
|
// The base URL with which you will access the script. No trailing slash.
|
|
define('BASE_URL', 'http://localhost/tinyURL');
|
|
// Max number of URLs to keep
|
|
define('MAX_SAVED_URLS', 100);
|