| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/wp-fastest-cache-premium/pro/templates/ |
Upload File : |
<div id="wpfc-buy-credit-content" class="mainContent">
<form action="http://api.wpfastestcache.net/paypal/buyimagecredit/" method="post">
<input type="hidden" name="hostname" value="<?php echo str_replace(array("http://", "www."), "", $_SERVER["HTTP_HOST"]); ?>">
<div class="pageView"style="display: block;">
<div class="fakeHeader">
<h3 class="title-h3">Choose the amount of Image Credit you'd like to add.</h3>
</div>
<div class="fieldRow radioList active">
<ul role="menu" id="wpfc-product-selection-list" class="">
<?php
if(function_exists('curl_exec')){
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, "http://api.wpfastestcache.net/prices/imagecredit");
$data = curl_exec($ch);
curl_close($ch);
}else{
$data = @file_get_contents("http://api.wpfastestcache.net/prices/imagecredit");
}
if($data){
$arr = json_decode($data);
foreach ($arr as $credit => $price) {
?>
<li style="margin-bottom: 0;">
<label class="">
<span class="icon"></span>
<input type="radio" name="quantity" value="<?php echo $credit; ?>">
<span class="text">$<?php echo $price; ?>/<?php echo $credit;?> Credits</span>
</label>
</li>
<?php
}
}else{
echo "Error Occured";
}
?>
</ul>
</div>
<div class="pagination">
<div class="next">
<button class="wpfc-btn primaryCta" id="productSelection">
<span class="label">Continue</span>
</button>
</div>
<div class="prev">
<button class="wpfc-btn primaryNegativeCta" id="wpfc-cancel-buy-credit">
<span>Cancel</span>
</button>
</div>
</div>
</div>
</form>
</div>