| 1234567891011121314151617181920212223242526 |
- <?php
- /*
- *
- * Application Name: PHP Custom Content Uploader
- * Module Name: test.php
- *
- * Copyright (c) 2020 DBMXPCA Technologies. All rights reserved.
- * https://www.dbmxpca.com/
- *
- */
- require_once($_SERVER['DOCUMENT_ROOT'] . "/core.php");
- // Get user information from user-db.
- $users = GET_JSON_DATA_FROM_FILE(USERS_JSON);
- echo "Key: " . $users["john_smith"]["key"];
- echo "<br>";
- echo "Enabled: " . $users["john_smith"]["enabled"];
- //print_r($users);
|