Ideas for populating or altering an element display from a PHP Array

There are definitely examples on the forums with loading dynamic data with PHP (and JSON data), though I don’t think I found a canonical example in some searching myself. But I think you have the basic idea; my approach would be:

  1. Have PHP code in your .html file (renamed to .php) or in a separate URL that outputs a JavaScript object. This can be a global. (If in a separate URL, you’ll need to make an AJAX call and do your own assignment)
  2. Assign IDs or Class Names to the elements you want to toggle
  3. On Scene Load add a Run JavaScript action that examines the JSON object and then changes visibility of the elements or whatever else you want to do
1 Like