/**** Usage: https://yourdomain.com/common/php/view-log.php?app=boardGame const APP_NAME = 'boardGame'; https://yourdomain.com/common/php/view-log.php?app=boardGame&date=2026-06-18 View boardGame logs BUTTON - If you want a button that opens the viewer for the current app: js const APP_NAME = 'boardGame'; document.getElementById('btnViewLog').addEventListener('click', () => { const url = `/common/php/view-log.php?app=${encodeURIComponent(APP_NAME)}`; window.open(url, '_blank'); }); ******/

ERROR: Missing 'app' parameter.