bouffeatulm/inc/functions.php

13 lines
286 B
PHP
Raw Normal View History

2013-08-12 09:52:50 +02:00
<?php
function getNotice() {
if(!file_exists('data/notice')) {
file_put_contents('data/notice');
}
return file_get_contents('data/notice');
}
function setNotice($notice) {
return file_put_contents('data/notice', $notice);
}