Friday, October 24, 2025
HomeLanguagesHow to pass JavaScript variables to PHP ?

How to pass JavaScript variables to PHP ?

JavaScript is the client side and PHP is the server side script language. The way to pass a JavaScript variable to PHP is through a request.

Method 1: This example uses form element and GET/POST method to pass JavaScript variables to PHP. The form of contents can be accessed through the GET and POST actions in PHP. When the form is submitted, the client sends the form data in the form of a URL such as:

https://example.com?name=value

This type of URL is only visible if we use the GET action, the POST action hides the information in the URL.

Client Side:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Passing JavaScript variables to PHP
    </title>
</head>
      
<body>
    <h1 style="color:green;">
        neveropen
    </h1>
      
    <form method="get" name="form" action="destination.php">
        <input type="text" placeholder="Enter Data" name="data">
        <input type="submit" value="Submit">
    </form>
</body>
  
</html>


Server Side(PHP): On the server side PHP page, we request for the data submitted by the form and display the result.




<?php
$result = $_GET['data'];
echo $result;
?>


Output:

Method 2: Using Cookies to store information:
Client Side: Use Cookie to store the information, which is then requested in the PHP page. A cookie named gfg is created in the code below and the value neveropen is stored. While creating a cookie, an expire time should also be specified, which is 10 days for this case.




<script>
  
// Creating a cookie after the document is ready
$(document).ready(function () {
    createCookie("gfg", "neveropen", "10");
});
   
// Function to create the cookie
function createCookie(name, value, days) {
    var expires;
      
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        expires = "; expires=" + date.toGMTString();
    }
    else {
        expires = "";
    }
      
    document.cookie = escape(name) + "=" + 
        escape(value) + expires + "; path=/";
}
  
</script>


Server Side(PHP): On the server side, we request for the cookie by specifying the name gfg and extract the data to display it on the screen.




<?php
    echo $_COOKIE["gfg"];
?>


Output:

JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.

PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS