gpt4 book ai didi

javascript - cookie不是js创建的

转载 作者:行者123 更新时间:2023-12-04 14:58:35 24 4
gpt4 key购买 nike

我正在计划一个注册系统。现在我正在尝试将随机生成的 session 字符串发送到 mysql 数据库;除了在 db 上发送之外,我还想用包含 session 字符串的 js 创建一个 cookie。我尝试使用以下代码

$sql = "INSERT INTO utenti (utente, email, password, anni, fos, pref, sessione) VALUES(?, ?, ?, ?, ?, ?, ?)";
$stmt = $conn->prepare($sql);
$stmt->bind_param('sssiiss', $ut, $em, $hash, $et, $fos, $gen, $randomString);
$stmt->execute();

?>
<script>
var date = new Date();
date.setTime(date.getTime()+(1202460601000));
document.cookie = "sessione=" + <?php echo $randomString ?> + "; expires=" + date.toGMTString();
</script>
<?php
但我不知道为什么没有生成cookie。有谁知道怎么帮我?

最佳答案

<?php $randomString = "ffafafasfasfsafaf";
echo $randomString; ?>
<script>
var date = new Date();
var randomString = '<?php echo $randomString ?>';
date.setTime(date.getTime()+(1202460601000));
document.cookie = "sessione=" + randomString + "; expires=" + date.toGMTString();
</script>
我试过这对我有用。 enter image description here

关于javascript - cookie不是js创建的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67407136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com