Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$contents = file_get_contents($dir); //здесь в одинарных кавычек указываю строку, которую надо удалить? $contents = str_replace($line, '', $contents); file_put_contents($dir, $contents);
<?php session_start(); $login = $_SESSION['login']; if (is_null($login)) { header('Location: http://xxx/login.php'); } echo "<br>Ваш логин в системе: $login";
<?php session_start(); $login = $_SESSION['login']; if ($login = 'NULL') { header('Location: http://xxx/login.php'); }