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:
- 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)
- Assign IDs or Class Names to the elements you want to toggle
- 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