eternalsword
-
How to pass value from javascript to php?
You will want to use JSON to communicate between javascript and php. What you do is build a JSON object or an array of JSON objects within php and then generate javascript using php doing something like: jQuery.parseJSON(''); Then inste…