在一個頁面上
保存值使用上面的代碼在你的問題的書面
編輯:
<?php
if($_POST['submit'])
{
$fileLocation = getenv("DOCUMENT_ROOT") . "/myfile.txt";
$file = fopen($fileLocation,"w");
$content = $_POST['text'];
fwrite($file,$content);
fclose($file);
header("Location: anotherpage.php");
}
?>
<form action="" method="POST">
<textarea name="text"></textarea>
<input type="submit" name="submit" value="Save" />
</form>
那麼y您可以在下一頁使用file_get_contents以再次獲取該文件的內容。
<?php
$homepage = file_get_contents(getenv("DOCUMENT_ROOT") . "/myfile.txt");
echo $homepage;
?>
編輯: 或
可以使用的,而不是在文本文件中保存的文本會話(如果你希望它是保存一個臨時的時間只有) 然後用給定的代碼
<?php
session_start();
if($_POST['submit'])
{
$content = $_POST['text'];
$_SESSION['text'] = $content;
header("Location: anotherpage.php");
}
?>
<form action="" method="POST">
<textarea name="text"></textarea>
<input type="submit" name="submit" value="Save" />
</form>
在anotherpage.php
<?php
session_start();
$homepage= $_SESSION['text'];
echo $homepage;
?>
怎麼樣在會話存儲文本? – xmarston
我舉一個例子:我的javascript生成隨機報價,我想保存該報價,以便報價出現在某些頁面,如myfavoritequotes.php – user3316437