Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在用户注册时显示一条消息,并在用户刷新网页时隐藏它。
<? session_start(); if(!isset($_SESSION['seen'])){ echo 'A message'; } $_SESSION['seen'] = true; ?>