如何使用POST构造将一个页面变量数据发布到两个不同的页面?

I have used below code in my present page to transfer data from present page to Save.php.I also want to post data to one more page .How can it be done?

<form method="post" action="Save.php">

You could do something like this

<?php
session_start();?>

HTML CODE HERE....

<?php
$_SESSION['varname']=$savedvalue;//value you want to save
?>

save the html file to pagename.php then in the save.php page again use sessions

<?php
    session_start();
$storedval=$_SESSION['varnmame'];
//the above line takes value stored in session variable and puts it in the storedval variable
?>

you could use same code above at any page and retrieve the valus stored in session variable