38394-vm/test2.php
2026-02-15 08:01:20 +00:00

7 lines
312 B
PHP

<?php
file_put_contents('test2_log.txt', 'test2.php started\n');
require_once 'db/config.php';
file_put_contents('test2_log.txt', "db/config.php included\n", FILE_APPEND);
require_once 'db/thawani_config.php';
file_put_contents('test2_log.txt', "db/thawani_config.php included\n", FILE_APPEND);
echo "Test 2 OK";