avatar
Untitled

hypnguyen 1.7K 17th Jul, 2020

<?php
header('Content-Type: application/json');
$url = 'http://40.117.72.98:13337/getProcess';

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec($ch);
curl_close($ch);

echo $res;
PHP
Description

No description

To share this paste please copy this url and send to your friends
RAW Paste Data