GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/MichaelMalz/CST2146/Resources/Snippets/!Default/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <snippet name="AJAX php" description="PHP code for AJAX .php file."> <insertText location="beforeSelection"> <![CDATA[<? // PATH_TO_PHP_FILE/PHP_FILE_NAME.php // PHP_FILE_NAME_purpose. $TRACK = false; // Turn off tracking for this page. $Ignore_uuid = true; // Ignore uuid. if ( !isset($_GET['DEBUG']) ) { $pageHeaderCall = NULL; $pageFooterCall = false; $DEBUG_PHP_FILE_NAME = false; $Skip_application_site = true; // Skip loading application_site.phpinc, game variables and site_js.phpinc. This is useful for pages loaded by XMLhttp requests. } else { $pageHeaderCall = false; $pageFooterCall = ''; $DEBUG_PHP_FILE_NAME = true; $Skip_SESSION_game = true; // Skip loading game variables and site_js.phpinc. This is useful for pages loaded by XMLhttp requests. } $authorizedGroups = "USER"; // List of groups authorized to view this page (i.e., PUBLIC = anyone, USER = any user, "Admin,Manager" = users in the Admin or Manager groups). include('../../../application.phpinc'); // Include application setup file. Use a relative path. if ( $Ignore_uuid || $_SESSION['uuid'] != $f['uuid'] ) { pageHeader($pageHeaderCall); if ( $pageHeaderCall ) d_On(); require('PATH_TO_PHP_FILE/PHP_FILE_NAME.phpinc'); if ( !$Ignore_uuid ) $_SESSION['uuid'] = $f['uuid']; // Stop reload from being processed. if ( $pageHeaderCall ) { d_Off(); d_On('foot'); } pageFooter($pageFooterCall); } ?> ]]> </insertText> <insertText location="afterSelection"><![CDATA[]]> </insertText> </snippet>