如何使用f写功能将一个文件传递给另一个文件

时间:2018-09-14 09:39:16

标签: php html

您好,如何使用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" 

0 个答案:

没有答案