我有file1.php和file2.php。在file1.php中,我创建了一个用于添加新闻文章的表单,当我按下按钮"提交"输入的数据发送到MYSQL库,页面重定向到file2.php。我想要做的是在file2.php中显示这篇文章。我怎么能这样做?
答案 0 :(得分:0)
使用PHP Cookie和会话
答案 1 :(得分:0)
你必须为此目的使用会话。由于你没有在这里发布你的代码所以我发布了一个样本。请说这是你的代码。更多帮助。检查这些链接。1,{{3 }},2
file1.php
<?php
session_start();
if(isset($_POST['article']))
{
//Then you add here in your MySQL
//Similarly add them in the session so you can access the same data on your file2.php
$_SESSION['article'] = $_POST['article'];
//now redirect to file2.php
}
?>
<form action="#" method="POST">
Article :<input type="text" name="article"/>
<input type="submit" value="click"/>
</form>
file2.php
session_start();
if(isset($_SESSION['article']))
{
echo $_SESSION['article'];
}