I have an php variable like this:
PHP Code:
$php_value = \'Am from PHP\';
And I want to be able to change this variable with jQue
If jQuery is going to be processing the data, then you can assign the PHP variable to a jQuery variable like this:
As far as I know, because jQuery is client-side and php is server side, it's not possible to assign a jQuery variable back to PHP.