skip to Main Content
<input type="hidden" id="hidden_sum_input" name="sum_input" value="">

<script> var sum = $('#hidden_sum_input').val();
<?php  $totsum =   ?>
</script>

how will i take the value from var sum and assign it to the php variable $totsum?

 var sum_of_pass = 0;
 sum_of_pass += no_of_adult;
 sum_of_pass += no_of_children;
   
 $("#hidden_sum_input").val(sum_of_pass);

i am getting the sum correctly in this variable sum_of_pass which i am keeping inside a hidden input now i want to use the value inside input tag as a php variable and do condition checks.
Thanks in advance!

2

Answers


  1. PHP is run server-side. JavaScript is run client-side in the browser of the user requesting the page. By the time the JavaScript is executed, there is no access to PHP on the server whatsoever. Please read this article with details about client-side vs server-side coding.

    What happens in a nutshell is this:

    • You click a link in your browser on your computer under your desk
    • The browser creates an HTTP request and sends it to a server on the Internet
    • The server checks if he can handle the request
    • If the request is for a PHP page, the PHP interpreter is started
    • The PHP interpreter will run all PHP code in the page you requested
    • The PHP interpreter will NOT run any JS code, because it has no clue about it
    • The server will send the page assembled by the interpreter back to your browser
    • Your browser will render the page and show it to you
    • JavaScript is executed on your computer

    In your case, PHP will write the JS code into the page, so it can be executed when the page is rendered in your browser. By that time, the PHP part in your JS snippet does no longer exist. It was executed on the server already. It created a variable $result that contained a SQL query string. You didn’t use it, so when the page is send back to your browser, it’s gone. Have a look at the sourcecode when the page is rendered in your browser. You will see that there is nothing at the position you put the PHP code.

    The only way to do what you are looking to do is either:

    • do a redirect to a PHP script or
    • do an AJAX call to a PHP script

    with the values you want to be insert into the database.

    Login or Signup to reply.
  2. According to me, you can write the PHP code in another file and can access the input values of HTML using name or value attributes.
    Hence, try writing PHP code in separate file and call that file in HTML.

    Happy Coding!!!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search