Skip to content Skip to sidebar Skip to footer

How To Pass Variables Between 2 PHP Files?


Solution 2:

code is here,

 <?php

    if($_REQUEST['click'] == 1)
    {
        echo "One was clicked.";
    }
    else if($_REQUEST['click'] == 2)
    {
        echo "Two was clicked.";
    }

?>

<html>
<body>
<a href="two.php?click=1">Click here for 1.</a>
<a href="two.php?click=2">Click here for 2.</a>
</body>
</html>

Solution 3:

You can pass variables by using GET or POST method.

Here is simple GET (query string) method.

main.php :

<html>
<body>
<a href="two.php?btn=One">Click here for 1.</a>
<a href="two.php?btn=Two">Click here for 2.</a>
</body>
</html>


two.php :

<?php
if(!empty($_GET['btn'])) {
    echo $_GET['btn'] . " was clicked";
}
?>

Solution 4:


Post a Comment for "How To Pass Variables Between 2 PHP Files?"