File manager - Edit - /home/cipherteam/htdocs/cipherteam.in/admin/ViewStockIPO.php
Back
<!DOCTYPE html> <html lang="en" class="loading"> <head> <title>Share Market IPO</title> <link rel="apple-touch-icon" sizes="60x60" href="app-assets/img/ico/apple-icon-60.png"> <link rel="apple-touch-icon" sizes="76x76" href="app-assets/img/ico/apple-icon-76.png"> <link rel="apple-touch-icon" sizes="120x120" href="app-assets/img/ico/apple-icon-120.png"> <link rel="apple-touch-icon" sizes="152x152" href="app-assets/img/ico/apple-icon-152.png"> <link rel="shortcut icon" type="image/x-icon" href="app-assets/img/ico/favicon.ico"> <link rel="shortcut icon" type="image/png" href="app-assets/img/ico/favicon-32.png"> <link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900%7CMontserrat:300,400,500,600,700,800,900" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="app-assets/fonts/feather/style.min.css"> <link rel="stylesheet" type="text/css" href="app-assets/fonts/simple-line-icons/style.css"> <link rel="stylesheet" type="text/css" href="app-assets/fonts/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="app-assets/vendors/css/perfect-scrollbar.min.css"> <link rel="stylesheet" type="text/css" href="app-assets/vendors/css/prism.min.css"> <link rel="stylesheet" type="text/css" href="app-assets/vendors/css/chartist.min.css"> <link rel="stylesheet" type="text/css" href="app-assets/css/app.css"> </head> <body data-col="2-columns" class=" 2-columns "> <!--ValidateUser--> <?php session_start(); if(!isset($_SESSION['user'])){ $page = "login.php"; header("location:$page"); } ?> <?php require_once('Connection.php'); ?> <div class="wrapper"> <!--Side Menu--> <?php include("Menu.php"); ?> <!--Navbar menu--> <?php include("Navbar.php"); ?> <div class="main-panel"> <div class="main-content"> <div class="content-wrapper"> <div class="container-fluid"> <!--Data Fatch--> <?php $sql = "SELECT `ipo_table`.`id` AS 'IPO_ID',`ipo_table`.`img` AS 'IPO_IMG',`ipo_table`.`c_name` AS 'C_NAME',`ipo_table`.`i_date` AS 'I_DATE',`ipo_table`.`c_date` AS 'C_DATE',`ipo_table`.`o_price` AS 'O_PRICE',`ipo_table`.`m_application` AS 'M_APPLICATION',`ipo_table`.`rat` AS 'IPO_RAT',`ipo_table`.`details` AS 'IPO_DETAIL',`ipo_table`.`url` AS 'IPO_URL', `ipo_table`.`suggestion` AS 'SUGGESTION', `ipo_table`.`allotment` AS 'ALLOTMENT', `ipo_table`.`gmp` AS 'GMP',`ipo_table`.`date` AS 'IPO_DATE' FROM `ipo_table` WHERE `ipo_table`.`id` = ".$_GET['id']; $rows = $con2->query($sql); ?> <section id="extended"> <div class="row"> <div class="col-sm-8"> <div class="card"> <div class="card-header"> <div class="card-title-wrap bar-success"> <h4 class="card-title">IPO'S Details</h4> </div> </div> <div class="card-body"> <div class="card-block"> <table class="table table-responsive-md text-left"> <!--data Print--> <?php if($rows->num_rows > 0) { $row = $rows->fetch_assoc(); ?> <tr> <td> ID </td> <td> <?php if(isset($row)){ echo $row['IPO_ID']; } ?> </td> </tr> <tr> <td> Company Name </td> <td> <?php if(isset($row)){ echo $row['C_NAME']; } ?> </td> </tr> <tr> <td> Opening Date </td> <td> <?php if(isset($row)){ echo $row['I_DATE']; } ?> </td> </tr> <tr> <td> Closing Date </td> <td> <?php if(isset($row)){ echo $row['C_DATE']; } ?> </td> </tr> <tr> <td> Opening Price </td> <td> <?php if(isset($row)){ echo $row['O_PRICE']; } ?> </td> </tr> <tr> <td> GMP </td> <td> <?php if(isset($row)){ echo $row['GMP']; } ?> </td> </tr> <tr> <td> Min. App. </td> <td> <?php if(isset($row)){ echo $row['M_APPLICATION']; } ?> </td> </tr> <tr> <td> Ratting </td> <td> <?php if(isset($row)){ echo $row['IPO_RAT'].'/10'; } ?> </td> </tr> <tr> <td> Suggestion </td> <td> <?php if(isset($row)){ echo $row['SUGGESTION']; } ?> </td> </tr> <tr> <td> Details </td> <td> <?php if(isset($row)){ echo $row['IPO_DETAIL']; } ?> </td> </tr> <tr> <td> URL </td> <td> <?php if(isset($row)){ echo $row['IPO_URL']; } ?> </td> </tr> <tr> <td> Allotment </td> <td> <?php if(isset($row)){ echo $row['ALLOTMENT']; } ?> </td> </tr> <tr> <td> Date </td> <td> <?php if(isset($row)){ echo $row['IPO_DATE']; } ?> </td> </tr> <tr> <td colspan="2"> <a href="EditIPO.php?id=<?php if(isset($row)){ echo $row['IPO_ID']; } ?>"> <button class="btn btn-raised mr-1 btn-primary"><i class="icon-pencil"></i></button> </a> <a href="DeleteIPO.php?id=<?php if(isset($row)){ echo $row['IPO_ID']; } ?>"> <button class="btn btn-raised mr-1 btn-danger"><i class="icon-trash"></i></button> </a> </td> </tr> <!--data Print--> <?php } $con2->close(); ?> </tbody> </table> </div> </div> </div> </div> <div class="col-sm-4"> <div class="card"> <div class="card-header"> <div class="card-title-wrap bar-success"> <h4 class="card-title">Picture</h4> </div> </div> <div class="card-body"> <div class="card-block text-center"> <img src="<?php echo $row['IPO_IMG']; ?>" class="rounded" width="300px" /><br/> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </div> <?php include("Footer.php"); ?> </div> </div> <!-- ////////////////////////////////////////////////////////////////////////////--> <!-- BEGIN VENDOR JS--> <script src="app-assets/vendors/js/core/jquery-3.3.1.min.js"></script> <script src="app-assets/vendors/js/core/popper.min.js"></script> <script src="app-assets/vendors/js/core/bootstrap.min.js"></script> <script src="app-assets/vendors/js/perfect-scrollbar.jquery.min.js"></script> <script src="app-assets/vendors/js/prism.min.js"></script> <script src="app-assets/vendors/js/jquery.matchHeight-min.js"></script> <script src="app-assets/vendors/js/screenfull.min.js"></script> <script src="app-assets/vendors/js/pace/pace.min.js"></script> <!-- BEGIN VENDOR JS--> <!-- BEGIN PAGE VENDOR JS--> <script src="app-assets/vendors/js/chartist.min.js"></script> <!-- END PAGE VENDOR JS--> <!-- BEGIN CONVEX JS--> <script src="app-assets/js/app-sidebar.js"></script> <script src="app-assets/js/notification-sidebar.js"></script> <!-- END CONVEX JS--> <!-- BEGIN PAGE LEVEL JS--> <script src="app-assets/js/dashboard-ecommerce.js"></script> <!-- END PAGE LEVEL JS--> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 8.2.9 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings