我目前正在使用 localstorage 来存储当前用户访问过的页面:
<?php
//start the session
session_start();
//set $username as the current logged in user
$username=$_SESSION["Username"];
?>
查询:
var journey = JSON.parse(localStorage.getItem('journey'))||[];
journey.push(location.protocol +
'//' + location.host + location.pathname);
localStorage.setItem('journey', JSON.stringify(journey));
目前这是一个临时存储,但我也想让他们选择保存他们的旅程。
如何将单个 URL 与用户 ID(已存储在数据库中)一起保存到 MySQL 数据库中?例如,表名“Journey”,列“URL”和“UserID”。