Aussuming that you running your code on server which is able to run PHP
scripts. Keep both files in same directory. On my localhost I run this script by following url - http://localhost/test/page1.php
First File Code (Page1.php
)
<?php
//this is page1.php
$url1 = "page2.php";
$var1 = 12;
$var2 = 12;
$var3 = 8;
$var4 = 10;
$var5 = 4;
$var6 = 2;
$var7 = 1;
$var8 = 6;
$var9 = 12;
$var10 = 10;
$url2 = $url1."?var1=".$var1."&var2=".$var2;
header("location:$url2");
?>
Second file code (page2.php
)
<?php
//this is page2.php
$var1 = $_GET['var1'];
echo "var 1 = ".$var1;
echo "<br/>";
$var2 = $_GET['var2'];
echo "var 2 = ".$var2;
?>
You will be redirected to page2.php.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…