gpt4 book ai didi

PHP VS。 HTML。将值从 html 传递到 php

转载 作者:搜寻专家 更新时间:2023-10-31 20:53:05 25 4
gpt4 key购买 nike

我有一个 action.php,它执行一些涉及 MySQL 数据库的处理。在 action.php 中我生成一个变量

$author

里面有一个字符串。当脚本终止时,它通过

调用 test.php
header('Location: ../test.php');

现在显示 test.html 时,我想显示字符串变量的内容

$author

在 html 元素中。喜欢

<h2>echo $author;</h2>

我该如何实现?感谢您提前回复。

最佳答案

您可以将 $author 的内容放在 session 中:

<?php
// action.php
session_start();
// Your code here

$_SESSION['author'] = $author;

// Redirect to test.php

<?php
// test.php
session_start();

echo '<h2>'. $_SESSION['author'] .'</h2>';

参见:

  1. session_start

关于PHP VS。 HTML。将值从 html 传递到 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5544588/

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