[size=10pt][size=14pt][size=10pt][size=8pt]Hi,
I ripped http://socialblastoff.party/ and here is the link to my temporary test site https://landing-page-ig-free-fol.000webhostapp.com/
I got php codes from one of my friend as below
get.php
[php]<?php
$post = [
‘usr’ => $_POST[‘usr’],
];
$ch = curl_init(‘https://landing-page-ig-free-fol.000webhostapp.com/get.php’);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;[/php]
newfollowers.php
[php]<?php
$post = [
‘usr’ => $_POST[‘usr’],
];
$ch = curl_init(‘https://landing-page-ig-free-fol.000webhostapp.com/newfollowers.php’);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
curl_close($ch);
echo $response;[/php]
but site is not responding when clicked the “get free followers” button
Any expert suggestions are greatly appreciated…
Cheers.[/size][/size][/size][/size]