OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
sendy
/
includes
/
helpers
/
integrations
/
zapier
/
actions
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/27/2024 05:23:40 AM
rwxr-xr-x
📄
create-send-campaign.php
1.88 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
functions.php
700 bytes
05/19/2025 10:07:15 AM
rw-r--r--
📄
subscribe.php
656 bytes
05/19/2025 10:07:15 AM
rw-r--r--
📄
unsubscribe.php
555 bytes
05/19/2025 10:07:15 AM
rw-r--r--
Editing: functions.php
Close
<?php //--------------------------------------------------------------// function file_get_contents_curl_post($url, $params) //--------------------------------------------------------------// { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $data = curl_exec($ch); $response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if($response_code!=200) return ''; else return $data; } ?>