我希望用户想要连接到他的用户面板,然后用户是否复制了地址栏的内容,如果用户想要注销则再次,如果用户想要连接到他的用户面板,则再次通过复制地址栏的内容,结果用户不能打开他的用户面板。我在网上搜索,我知道我应该使用会话。
请参阅以下代码。当我在互联网上搜索 Sessions和php 时,我发现如下内容:
<?php
// Start the session
session_start();
?>
<!DOCTYPE html>
<html>
<body>
<?php
// Set session variables
$_SESSION["favcolor"] = "green";
$_SESSION["favanimal"] = "cat";
echo "Session variables are set.";
?>
</body>
</html>
如您所见,Session位于php tag
内,php tag
位于HTML tag
内。问题是,要使用会话,我们无法在php tag
代码中使用java
。