How to save the value of a variable from php to js? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

How to save the value of a variable from php to js?

How to save the value of a variable from php to js?

21st Mar 2019, 7:01 AM
Eugene
Eugene - avatar
12 Answers
+ 13
U work with a.php and do: <?php $a = 5; ?> <script> var a = <?php echo $a; ?>; alert(a) </script> just copy this code to php code playground and you will see, how this is powerful
21st Mar 2019, 11:34 AM
Dejan Dozet
Dejan Dozet - avatar
+ 4
Boby sure, we just need to make sure that they are properly encoded (like single/double quotes etc.)
28th Mar 2019, 11:47 AM
Dejan Dozet
Dejan Dozet - avatar
+ 3
Good question! I do that by HTTP request. I send the value of the variable as a response text and my JavaScript function then process it into variable.
21st Mar 2019, 7:16 AM
Jan Štěch
Jan Štěch - avatar
+ 3
Boby : var a = '<?php... then, you are missing ' and before ;
28th Mar 2019, 11:53 AM
Dejan Dozet
Dejan Dozet - avatar
+ 2
Jan Štěch Could you please explain how you do this? de do does this really assign the value of PHP "a" to the JS variable? Does it also work with numbers, etc.?
21st Mar 2019, 12:48 PM
Pete Wright
Pete Wright - avatar
+ 2
There are two different cases. 1) You are loading or reloading the webpage 2) You want to change the value of the variable without reloading the webpage (AJAX will be used). In the first case, you can just do that as @de do said. Just add PHP tags into your script tags in your HTML file and place echo statement with the value into it. Example: index.php: <html> <head> <title>Test</title> <script> var x = <?php echo 73; ?> <script> <head> <body> Hello world </body> <html> In the second case, you need to know AJAX (Asynchronous Javascript And Xml). You send an XML HTTP request to the server and when you get the response, you execute another Javascript function that will take the response text as an argument and assign it to the variable. Here is how can you do that: index.html: <html> <head> <title>Test</title> <script src="script.js" /> <head> <body> <button onclick="getVar()">Get variable</button> </body> <html> script.js: function getVar() { var req = false req = new XMLHttpRequest(); if (!req) {console.log("Your browser doesn't support AJAX.");} req.onreadystatechange = function() { if(req.readyState == 4) { responseFunc(req.responseText, subject); } } req.open("GET", "ajax.php", true); req.send(null); } function responseFunc(response) { var x = response; } ajax.php: echo 73; After the user clicks on the button, the JavaScript variable x will contain value 73 sent from php script running on the server.
21st Mar 2019, 3:40 PM
Jan Štěch
Jan Štěch - avatar
+ 2
Jan Štěch thanks. But I still don't get the AJAX part. Do you know any good online tutorial about AJAX? Or a good book?
21st Mar 2019, 3:48 PM
Pete Wright
Pete Wright - avatar
+ 2
Not really, I learnt from more sources and don't know it completely. I just copy and paste a function creating the request and call it with different parameters whenever I want. But I would recommend you learning on w3schools. You should start on this webpage: https://www.w3schools.com/xml/ajax_intro.asp.
21st Mar 2019, 4:00 PM
Jan Štěch
Jan Štěch - avatar
+ 2
try this one: <? $text="Example PHP Variable Message"; echo '<script>alert("'.$text.'")</script>';
28th Mar 2019, 11:37 AM
Emresta.com
Emresta.com - avatar
+ 1
de do , can we alert string same way ?
28th Mar 2019, 11:42 AM
Emresta.com
Emresta.com - avatar
+ 1
trying to do like so i get nothing <?php $a = "hello"; ?> <script> var a = <?php echo $a; ?>; alert(a) </script>
28th Mar 2019, 11:50 AM
Emresta.com
Emresta.com - avatar
+ 1
De do, excellent , thanks !
28th Mar 2019, 12:00 PM
Emresta.com
Emresta.com - avatar