How to get a value from a JavaScript variable to a PHP variable without AJAX, Jscript, HTML hidden field, or a cookie ?
(from PHP to JavaScript: var javaScriptVar = "<?php echo $someVar; ?>"; )
So is there nothing like that?
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do it like in your example, but your javascript must either be inside a script tag which is in a PHP file, or in an external ‘js’ file that you save with a php extension.
Or, you can set your server up so that all files with a ‘js’ extension also get parsed by PHP, but that’s probably more than overkill.
However, since the PHP will only be executed once before the file is returned to the client, there’s no way to make that dynamic. If your objective is to do something simple with data that resides on the server (and more than likely will not change between page accesses) it won’t be too horrible to accomplish what you want to do that way.