您好,如何使用f write将变量从一个文件传递到另一个文件
我的文件名为a.php
代码为
<?php
if(isset($_POST['psub'])){
$myfile = fopen("an.php", "w") or die("Unable to open file!");
$pst = $_POST['pst'];
fwrite($myfile,$pst);
fclose($myfile);
}
?>
<form action="" method="post">
<input type="text" name="pst">
<input type="submit" name="psub" value="submit">
</form>
我需要使用an.php
$abc = "GET VALUE FROM $pst"