Initial commit

This commit is contained in:
Josias Castro
2026-06-18 17:20:35 -03:00
commit 8480111728
14 changed files with 8069 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
$str_apl = 'app_Login';
if(is_file("_lib/_app_data/" . $str_apl . '_ini.php'))
{
require("_lib/_app_data/" . $str_apl . '_ini.php');
$str_apl = $arr_data['friendly_url'];
}
else
{
$str_apl = $str_apl . '/';
}
header("Location: " . $str_apl);
?>