<?php
if ( isset($_GET['utm_source']) && trim($_GET['utm_source']) != '' ) {
$utm_source = trim($_GET['utm_source']);
setcookie('utm_source', $utm_source, time() + 60 * 60 * 24 * 365); // срок действия ~ 1 год
}
<?php
echo $_COOKIE['utm_source'];
...
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
...
@media (min-width: 320px) and (max-width: 413px) {
/* стили */
}
@media (min-width: 414px) and (max-width: 575px) {
/* другие стили*/
}
$date_mysql = '2003-08-12';
$date_time = strtotime($date_mysql);
$month = array(
1 => 'января',
2 => 'февраля',
3 => 'марта',
4 => 'апреля',
5 => 'мая',
6 => 'июня',
7 => 'июля',
8 => 'августа',
9 => 'сентября',
10 => 'октября',
11 => 'ноября',
12 => 'декабря'
);
echo date('j', $date_time) , ' ' . $month[date('n', $date_time)] , ' ' . date('Y', $date_time);
//12 августа 2003