This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// FRAMEWORK – Minimal interactive demo (single-file) | |
// Basic DB persistence for testing (artinext) | |
// Creates unique *_framework tables to preserve test data | |
if (php_sapi_name() !== 'cli') { | |
// Prefer ticket_system config if available | |
$dbHost = 'localhost'; | |
$dbName = 'artinext'; | |
$dbUser = 'root'; |