gpt4 book ai didi

javascript - 加载一个 .html 页面,其中应包含 .php 文件中的一些数据

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:10 25 4
gpt4 key购买 nike

我有三个文件。 <强>1。 login.html - 这将获取用户凭据并将它们发送到 php 脚本。 <强>2。 check_password.php - 这将根据 MySQL 数据库验证用户凭据。 <强>3。 location.html - 这将使用谷歌地图显示位置。

问题在于整合这三个文件。

对于有效用户,应该加载 location.html。

location.html 在浏览器上应该看起来像这样 part1 - 欢迎“用户名”part2 - map

要完成 location.html 的第 1 部分,我猜我应该从 check_password.php 中获取用户名。我是初学者。我不明白我必须如何做到这一点。请帮忙。如果我需要提供任何其他信息,请务必告知我。

位置.html:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 75%; }
body { height: 75%; ; margin: 0; padding: 0 }
#map-canvas { height: 80%; width: 80%; margin: 10px }
</style>
</head>

<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=#######&sensor=true">
</script>
<script type="text/javascript">
/*code for initialising map*/
</script>
body>
<div id="map-canvas"/>
</body>
</html>

我能够完成此集成的某些部分。我能够将数据从 login.html 发送到 php 脚本进行验证。

最佳答案

  1. login.html 应该包含一个将数据提交到 check_password.php 的表单
  2. check_password.php 应该对用户进行身份验证并标记他们已使用 session 登录
  3. location.html 应该是一个 PHP 程序,并在交付私有(private) HTML 之前检查 session 数据是否表明已通过身份验证的用户

关于javascript - 加载一个 .html 页面,其中应包含 .php 文件中的一些数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21623664/

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