[Solved] Pass Javascript var into PHP var
[ad_1] You cannot do that. PHP is executed on your server. Javascript on the otherhand is executed on your client’s machine in the browser. There are two different execution context. While you can pass a PHP variable into Javascript, you cannot do the opposite since PHP is executed first and the JavaScript code is the … Read more