Wednesday, May 29, 2024
 Popular · Latest · Hot · Upcoming
76
rated 0 times [  78] [ 2]  / answers: 1 / hits: 136297  / 12 Years ago, sat, february 2, 2013, 12:00:00

I have the following code in JavaScript:



<script>
var a=Hello;
</script>


PHP Code:-



<?php 
$variable = // I want the above JavaScript variable 'a' value to be stored here
?>


Note : I don't want it in a form submission. I have some logic in JavaScript and I want to use it in the same PHP page... Please let me know how I can do this.


More From » php

 Answers
2

You have to remember that if JS and PHP live in the same document, the PHP will be executed first (at the server) and the JS will be executed second (at the browser)--and the two will NEVER interact (excepting where you output JS with PHP, which is not really an interaction between the two engines).



With that in mind, the closest you could come is to use a PHP variable in your JS:



<?php
$a = 'foo'; // $a now holds PHP string foo
?>
<script>
var a = '<?php echo $a; ?>'; //outputting string foo in context of JS
//must wrap in quotes so that it is still string foo when JS does execute
//when this DOES execute in the browser, PHP will have already completed all processing and exited
</script>
<?php
//do something else with $a
//JS still hasn't executed at this point
?>


As I stated, in this scenario the PHP (ALL of it) executes FIRST at the server, causing:




  1. a PHP variable $a to be created as string 'foo'

  2. the value of $a to be outputted in context of some JavaScript (which is not currently executing)

  3. more done with PHP's $a

  4. all output, including the JS with the var assignment, is sent to the browser.



As written, this results in the following being sent to the browser for execution (I removed the JS comments for clarity):



<script>
var a = 'foo';
</script>


Then, and only then, will the JS start executing with its own variable a set to foo (at which point PHP is out of the picture).



In other words, if the two live in the same document and no extra interaction with the server is performed, JS can NOT cause any effect in PHP. Furthermore, PHP is limited in its effect on JS to the simple ability to output some JS or something in context of JS.


[#80458] Friday, February 1, 2013, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
donaldcristianl

Total Points: 114
Total Questions: 95
Total Answers: 110

Location: Bonaire
Member since Sat, May 27, 2023
1 Year ago
donaldcristianl questions
;