Your IP : 3.149.254.35


Current Path : /home/lentoinv/covisclubinternational.com/profile/
Upload File :
Current File : /home/lentoinv/covisclubinternational.com/profile/elibrary.php

<?php
session_start();
include("lib/connect.inc.php");
$uid = $covis->Uid();

?>


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link rel="stylesheet" href="treant/examples/tree/basic-example2.css">
    <!-- Neptune CSS -->
    <link rel="stylesheet" href="css/core.css">
    <title>Download</title>
    <link rel="shortcut icon" href="img/fav.png" />
    <link rel="stylesheet" href="treant/Treant.css">
    <link rel="stylesheet" href="treant/examples/tree/basic-example2.css">
    <!-- Neptune CSS -->
    <link rel="stylesheet" href="css/core.css">

    <!-- Tell the browser to be responsive to screen width -->
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- Vendor CSS -->
    <link rel="stylesheet" href="../vendor/bootstrap4/css/bootstrap.min.css">
    <link rel="stylesheet" href="../vendor/themify-icons/themify-icons.css">
    <link rel="stylesheet" href="../vendor/font-awesome/css/font-awesome.min.css">
    <link rel="stylesheet" href="../vendor/animate.css/animate.min.css">
    <link rel="stylesheet" href="../vendor/jscrollpane/jquery.jscrollpane.css">
    <link rel="stylesheet" href="../vendor/waves/waves.min.css">
    <link rel="stylesheet" href="../vendor/switchery/dist/switchery.min.css">
    <link rel="stylesheet" href="../vendor/morris/morris.css">
    <link rel="stylesheet" href="../vendor/jvectormap/jquery-jvectormap-2.0.3.css">
    <!-- Font Awesome -->
    <?php include('head.php'); ?>
</head>
<body class="hold-transition sidebar-mini layout-fixed">
<div class="wrapper">

    <?php include('nav.php'); ?>

   


            <!-- Content Wrapper. Contains page content -->
            <div class="content-wrapper">
    <section class="content-header">
      <div class="container-fluid">
        <div class="row mb-2">
          <div class="col-sm-6">
            <h1>COVIS ELECTRONIC LIBRARY</h1>
          </div>
          <div class="col-sm-6">
            <ol class="breadcrumb float-sm-right">
              <li class="breadcrumb-item"><a href="index.php">Home</a></li>
              <li class="breadcrumb-item active">Covis Electronic Library</li>
            </ol>
          </div>
        </div>
      </div><!-- /.container-fluid -->
    </section>        
                <!-- Content Header (Page header) -->
                

                <div id="refresh"><?php if(isset($report)){$covis->Alert(); } ?></div>

                <div class="content">
                    <div class="container-fluid">
                         <div class="row">

<?php  $sq = $db->query("SELECT * FROM bookcat ORDER BY cat ");
                                while($ro = $sq->fetch_assoc()){ $sn = $ro['sn'];  ?>

                              <div class="col-md-12 mb-2">
                            <div class="card-header text-white bg-dark">
                                        <h5><?php echo $ro['cat']; ?></h5>
                                    </div> 
                                     </div> 

                                
                                  
                                        <div class="row m-1 mb-5">
                                              <?php $i=0;
                                        $sql = $db->query("SELECT * FROM material WHERE cat='$sn' AND status=1 ");
                                        while($row = $sql->fetch_assoc()){ $i +=1; $course = $row['sn']; $cost=$row['p1'];
                                        $co = $row['p'.$stage];
                                            ?>
                                         <div class="col-md-3 box p-0 m-1">
                                         <img width="100%" src="material/<?php echo $row['cover'] ?>">
                                         <div class="p-2">
                                        <b> <?php echo ucwords(strtolower($row['title'])); ?></b><br>
                                        <?php echo $row['description']; ?><br>
                                        <b> <span>$<?php echo number_format($co,2); ?></span> <span class="pl-2" style="text-decoration: line-through; color: grey">$<?php echo number_format($cost,2); ?></span></b><br><br>
                                         <form method="post" id="nextlevel<?php echo $row['sn'] ?>">
<?php if(sqL2('buybook','id',$uid,'book',$course)>0){ ?>
<button class="btn btn-success btn-block" type="submit" value="<?php echo $row['sn'] ?>" name="DownloadMaterial" style="float: right">Download</button>
<?php } else{ ?>
<button class="btn btn-primary btn-block" type="button" onclick="next('<?= $row['sn'] ?>','<?= $co ?>')" >Buy Now</button>
<?php } ?>
                                                    </form>
                                                    
                                   </div>
                                          </div> 
                                     <?php } ?>
                                        </div>
                                    
                                    <?php } ?>
                                    
                             
                                
                       

<!---

                             <div class="col-md-12">
                        <div class="card">
                            <div class="card-header text-white bg-dark">
                                    <h5>Electronic Library</h5>
                                    </div>
                           
                                <div class="card-body">
                                <?php  $sq = $db->query("SELECT * FROM bookcat ORDER BY cat ");
                                while($ro = $sq->fetch_assoc()){ $sn = $ro['sn'];  ?>
                                    <h5 class=""><br><?php echo $ro['cat']; ?></h5>
                                    <div class="row" style="padding: 20px">
                                        <?php  $sql = $db->query("SELECT * FROM material WHERE cat='$sn' ORDER BY created DESC");
                                        while($row = $sql->fetch_assoc()){
                                            // if(strtolower(pathinfo($row['material'],PATHINFO_EXTENSION))== 'pdf'){$img = '1.png';}
                                            // elseif(strtolower(pathinfo($row['material'],PATHINFO_EXTENSION))== 'zip') {$img = '3.png';}
                                            // else {$img = '2.png';}
                                            ?>

                                            <div class="col-lg-3 col-md-4 col-sm-6 col-xs-12" style="padding: 15px; border: thin solid #CCC;">

                                                <img src="material/<?php echo $row['cover'] ?>" style="width: 100%">

                                                <br/><br/>

                                                <h4><?php echo ucwords(strtolower($row['title'])) ?></h4>
                                                    <p><?php echo $row['description']  ?></p>
                                                  

                                                    <form method="post">
                                                        <button class="btn btn-primary" type="submit" value="<?php echo $row['sn'] ?>" name="DownloadMaterial" style="float: right">Download</button>
                                                    </form>



                                            </div>
                                        <?php } ?>

                                    </div>
                                <?php } ?>
                                </div>
                            </div>
                        </div>--->
                    </div>

                </div>
            </div>
                    <!-- /.card-body -->

                    <!-- /.card -->

                    <!-- right col -->
                </div>
                <!-- /.row (main row) -->
            </div><!-- /.container-fluid -->

            <!-- /.content -->
        </div>
        <!-- /.content-wrapper -->
        <?php include('foot.php'); ?>

        <!-- Control Sidebar -->
        <aside class="control-sidebar control-sidebar-dark">
            <!-- Control sidebar content goes here -->
        </aside>
        <!-- /.control-sidebar -->
    </div>
    <!-- ./wrapper -->

    <!-- jQuery -->
    <script src="../plugins/jquery/jquery.min.js"></script>
    <!-- jQuery UI 1.11.4 -->
    <script src="../plugins/jquery-ui/jquery-ui.min.js"></script>
    <!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
    <script>
        $.widget.bridge('uibutton', $.ui.button)
    </script>
    <!-- Bootstrap 4 -->
    <script src="../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
    <!-- ChartJS -->
    <script src="../plugins/chart.js/Chart.min.js"></script>
    <!-- Sparkline -->
    <script src="../plugins/sparklines/sparkline.js"></script>
    <!-- JQVMap -->
    <script src="../plugins/jqvmap/jquery.vmap.min.js"></script>
    <script src="../plugins/jqvmap/maps/jquery.vmap.usa.js"></script>
    <!-- jQuery Knob Chart -->
    <script src="../plugins/jquery-knob/jquery.knob.min.js"></script>
    <!-- daterangepicker -->
    <script src="../plugins/moment/moment.min.js"></script>
    <script src="../plugins/daterangepicker/daterangepicker.js"></script>
    <!-- Tempusdominus Bootstrap 4 -->
    <script src="../plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"></script>
    <!-- Summernote -->
    <script src="../plugins/summernote/summernote-bs4.min.js"></script>
    <!-- overlayScrollbars -->
    <script src="../plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"></script>
    <!-- AdminLTE App -->
    <script src="../dist/js/adminlte.js"></script>
    <!-- AdminLTE dashboard demo (This is only for demo purposes) -->
    <script src="../dist/js/pages/dashboard.js"></script>
    <!-- AdminLTE for demo purposes -->
    <script src="../dist/js/demo.js"></script>
    <!-- DataTables -->
    <script src="../plugins/datatables/jquery.dataTables.min.js"></script>
    <script src="../plugins/datatables-bs4/js/dataTables.bootstrap4.min.js"></script>
    <script src="../plugins/datatables-responsive/js/dataTables.responsive.min.js"></script>
    <script src="../plugins/datatables-responsive/js/responsive.bootstrap4.min.js"></script>

    <script type="text/javascript" src="../vendor/chartist/chartist.min.js"></script>

    <!-- Vendor JS -->
    <script type="text/javascript" src="../vendor/jquery/jquery-1.12.3.min.js"></script>
    <script type="text/javascript" src="../vendor/tether/js/tether.min.js"></script>
    <script type="text/javascript" src="../vendor/bootstrap4/js/bootstrap.min.js"></script>
    <script type="text/javascript" src="../vendor/detectmobilebrowser/detectmobilebrowser.js"></script>
    <script type="text/javascript" src="../vendor/jscrollpane/jquery.mousewheel.js"></script>
    <script type="text/javascript" src="../vendor/jscrollpane/mwheelIntent.js"></script>
    <script type="text/javascript" src="../vendor/jscrollpane/jquery.jscrollpane.min.js"></script>
    <script type="text/javascript" src="../vendor/jquery-fullscreen-plugin/jquery.fullscreen-min.js"></script>
    <script type="text/javascript" src="../vendor/waves/waves.min.js"></script>
    <script type="text/javascript" src="../vendor/switchery/dist/switchery.min.js"></script>
    <script type="text/javascript" src="../vendor/flot/jquery.flot.min.js"></script>
    <script type="text/javascript" src="../vendor/flot/jquery.flot.resize.min.js"></script>
    <script type="text/javascript" src="../vendor/flot.tooltip/js/jquery.flot.tooltip.min.js"></script>
    <script type="text/javascript" src="../vendor/CurvedLines/curvedLines.js"></script>
    <script type="text/javascript" src="../vendor/TinyColor/tinycolor.js"></script>
    <script type="text/javascript" src="../vendor/sparkline/jquery.sparkline.min.js"></script>
    <script type="text/javascript" src="../vendor/raphael/raphael.min.js"></script>
    <script type="text/javascript" src="../vendor/morris/morris.min.js"></script>
    <script type="text/javascript" src="../vendor/jvectormap/jquery-jvectormap-2.0.3.min.js"></script>
    <script type="text/javascript" src="../vendor/jvectormap/jquery-jvectormap-world-mill.js"></script>
    <script type="text/javascript" src="../vendor/peity/jquery.peity.js"></script>
    <script type="text/javascript" src="../vendor/chartist/chartist.min.js"></script>

    <!-- Neptune JS -->
    <script type="text/javascript" src="js/app.js"></script>
    <script type="text/javascript" src="js/demo.js"></script>
    <script type="text/javascript" src="js/index.js"></script>


    <!-- page script -->
    <script type="text/javascript">
        $(function(){
            $("#username").keyup(function(){
                var v = $(this).val();

                $.ajax({
                    type: 'get',
                    url : 'js/username.php?val='+v
                }).done(function(data){

                    if(data == 0){
                        $("#output").html('');
                    }
                    else if(data == 1){
                        $("#output").html('Username Does Not Exist');
                    }
                    else {
                        $("#output").html(data);
                    }
                })
            })
        })
function next(v,u) {
  // alert(v)

  $('#nextlevel'+v).html('ACCOUNT BALANCE: $<?= $covis->totalEarnings($uidx) ?> <button class="btn btn-danger btn-lg btn-block" type="submit" value="'+v+'" name="BuyBook">Proceed to Pay $'+u+'</button><a href="javascript:;" onclick="back('+v+','+u+')">Cancel</a>')
}

function back(v,u){
  $('#nextlevel'+v).html('<button class="btn btn-primary btn-block" type="button" onclick="next('+v+','+u+')" >Buy Now</button>')   
}

    </script>
    <script src="treant/vendor/raphael.js"></script>
    <script src="treant/Treant.js"></script>


    <script>
        new Treant( chart_config );
    </script>

</body>
</html>

?>