Здравствуйте, вот код:
<?php
require 'db.php';
$data = $_GET;
if (isset($data['search'])) {
setcookie("executor_user_name", $_SESSION['logged_user']->user_name);
setcookie("customer_user_name", $user['user_name']);
}
if (isset($data['submit'])) {
unset($_COOKIE['executor_user_name']);
setcookie('executor_user_name', '', time() - 3600);
}
?>
<form action="One executor.php" method="GET">
<input type="search" placeholder="найти заказчика" name="user_name">
<button type="submit" name="search"></button>
</form>
</div>
<?php
if (isset($data['search'])) {
$user = R::findOne( 'users', 'user_name = ?', array($data['user_name']) );
if ($user) {
echo '<div id="request"><p id="user_name">' . $user['user_name'] . '</p><form action="one executor.php" method="GET"><input type="submit" id="contact" value="Отправить заявку" name="dispatch"></form></div>';
}
}
echo $_COOKIE["customer_user_name"];
?>
Почему в куки customer_user_name не записывается значение? При выводе $user['user_name'], значение выводится. Помогите пожалуйста.