2013-10-09 15:00:00 +02:00
|
|
|
<?php
|
2013-10-10 15:00:00 +02:00
|
|
|
// The file to which we should store the data
|
|
|
|
define('DATA_FILE', 'data');
|
2013-10-11 15:00:00 +02:00
|
|
|
// The base URL with which you will access the script. No trailing slash.
|
|
|
|
define('BASE_URL', 'http://localhost/tinyURL');
|
2013-10-10 15:00:00 +02:00
|
|
|
// Max number of URLs to keep
|
|
|
|
define('MAX_SAVED_URLS', 100);
|