Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php include_once "session.php";
- if(!$link)
- {
- die('not connected');
- }
- $mlink= mysqli_query($link, "select * from products where id>0");
- $row= mysqli_fetch_array($mlink);
- if(isset($_POST["submit"]))
- {
- $uname = $_POST['pcode'];
- $ucredits = $_POST['nqty'];
- $unotes = $_POST['notes'];
- if($link === false){
- die("ERROR: Could not connect. " . mysqli_connect_error());
- }
- //$sql = ("UPDATE users SET name = '$uname', mobile = '$umobile', userid = '$uemail', password = '$upassword', address = '$uaddress', tin = '$utin', wot = '$uwot' WHERE id='$ID'");
- $sql = "INSERT INTO stock (product, nstock, notes, date) VALUES ('$uname', '$ucredits', '$unotes',now())";
- if(mysqli_query($link, $sql)){
- echo "Records added successfully.";
- } else{
- echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
- }
- $sql2 = ("UPDATE products SET qty = qty+'$ucredits' WHERE productcode='$uname'");
- if(mysqli_query($link, $sql2)){
- echo "Records added successfully.";
- } else{
- echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
- }
- // close connection
- mysqli_close($link);
- }
- ?>
- <!DOCTYPE html>
- <!--
- This is a starter template page. Use this page to start your new project from
- scratch. This page gets rid of all links and provides the needed markup only.
- -->
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>AdminLTE 2 | Starter</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <!-- Bootstrap 3.3.6 -->
- <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
- <!-- Ionicons -->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
- <!-- Theme style -->
- <link rel="stylesheet" href="dist/css/AdminLTE.min.css">
- <!-- AdminLTE Skins. We have chosen the skin-blue for this starter
- page. However, you can choose any other skin. Make sure you
- apply the skin class to the body tag so the changes take effect.
- -->
- <link rel="stylesheet" href="dist/css/skins/skin-blue.min.css">
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <!--
- BODY TAG OPTIONS:
- =================
- Apply one or more of the following classes to get the
- desired effect
- |---------------------------------------------------------|
- | SKINS | skin-blue |
- | | skin-black |
- | | skin-purple |
- | | skin-yellow |
- | | skin-red |
- | | skin-green |
- |---------------------------------------------------------|
- |LAYOUT OPTIONS | fixed |
- | | layout-boxed |
- | | layout-top-nav |
- | | sidebar-collapse |
- | | sidebar-mini |
- |---------------------------------------------------------|
- -->
- <body class="hold-transition skin-blue sidebar-mini">
- <div class="wrapper">
- <!-- Main Header -->
- <header class="main-header">
- <!-- Logo -->
- <a href="index2.html" class="logo">
- <!-- mini logo for sidebar mini 50x50 pixels -->
- <span class="logo-mini"><b>A</b>LT</span>
- <!-- logo for regular state and mobile devices -->
- <span class="logo-lg"><b>Divine</b>CAARDS</span>
- </a>
- <!-- Header Navbar -->
- <?php include_once "sidebar.php"; ?>
- <!-- Content Wrapper. Contains page content -->
- <div class="content-wrapper">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>Add Credits to User
- <small>Credit Information</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
- <li class="active">Here</li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <!-- Your Page Content Here -->
- <div class="row">
- <!-- left column -->
- <div class="col-md-12">
- <!-- general form elements -->
- <div class="box box-primary">
- <div class="box-header with-border">
- </div>
- <!-- /.box-header -->
- <!-- form start -->
- <form action="" method="post">
- <div class="box-body">
- <div class="form-group">
- <label for="Username">User ID</label>
- <input list="pcode" required="required" class="form-control col-md-7 col-xs-12">
- <datalist id="pcode">
- <?php
- while($row= mysqli_fetch_array($mlink))
- {
- ?>
- <option value="<?php echo $row ['productcode']; ?>"> <?php } ?>
- </datalist>
- </div>
- <div class="form-group">
- <label for="Credits">Credits</label>
- <input type="number" class="form-control" id="credits" placeholder="Enter Credits Here" name="nqty" required ="required">
- </div>
- <div class="form-group">
- <label>Notes</label>
- <textarea class="form-control" rows="3" name="notes"></textarea>
- </div>
- </div>
- <!-- /.box-body -->
- <div class="box-footer">
- <button type="submit" class="btn btn-primary">Submit</button>
- </div>
- </form>
- </div>
- <!-- /.box -->
- </section>
- <!-- /.content -->
- </div>
- <!-- /.content-wrapper -->
- <!-- Main Footer -->
- <?php include_once "footer.php"; ?>
- <!-- Control Sidebar -->
- <aside class="control-sidebar control-sidebar-dark">
- <!-- Create the tabs -->
- <ul class="nav nav-tabs nav-justified control-sidebar-tabs">
- <li class="active"><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li>
- <li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li>
- </ul>
- <!-- Tab panes -->
- <div class="tab-content">
- <!-- Home tab content -->
- <div class="tab-pane active" id="control-sidebar-home-tab">
- <h3 class="control-sidebar-heading">Recent Activity</h3>
- <ul class="control-sidebar-menu">
- <li>
- <a href="javascript:;">
- <i class="menu-icon fa fa-birthday-cake bg-red"></i>
- <div class="menu-info">
- <h4 class="control-sidebar-subheading">Langdon's Birthday</h4>
- <p>Will be 23 on April 24th</p>
- </div>
- </a>
- </li>
- </ul>
- <!-- /.control-sidebar-menu -->
- <h3 class="control-sidebar-heading">Tasks Progress</h3>
- <ul class="control-sidebar-menu">
- <li>
- <a href="javascript:;">
- <h4 class="control-sidebar-subheading">
- Custom Template Design
- <span class="pull-right-container">
- <span class="label label-danger pull-right">70%</span>
- </span>
- </h4>
- <div class="progress progress-xxs">
- <div class="progress-bar progress-bar-danger" style="width: 70%"></div>
- </div>
- </a>
- </li>
- </ul>
- <!-- /.control-sidebar-menu -->
- </div>
- <!-- /.tab-pane -->
- <!-- Stats tab content -->
- <div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div>
- <!-- /.tab-pane -->
- <!-- Settings tab content -->
- <div class="tab-pane" id="control-sidebar-settings-tab">
- <form method="post">
- <h3 class="control-sidebar-heading">General Settings</h3>
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Report panel usage
- <input type="checkbox" class="pull-right" checked>
- </label>
- <p>
- Some information about this general settings option
- </p>
- </div>
- <!-- /.form-group -->
- </form>
- </div>
- <!-- /.tab-pane -->
- </div>
- </aside>
- <!-- /.control-sidebar -->
- <!-- Add the sidebar's background. This div must be placed
- immediately after the control sidebar -->
- <div class="control-sidebar-bg"></div>
- </div>
- <!-- ./wrapper -->
- <!-- REQUIRED JS SCRIPTS -->
- <!-- jQuery 2.2.3 -->
- <script src="plugins/jQuery/jquery-2.2.3.min.js"></script>
- <!-- Bootstrap 3.3.6 -->
- <script src="bootstrap/js/bootstrap.min.js"></script>
- <!-- AdminLTE App -->
- <script src="dist/js/app.min.js"></script>
- <!-- Optionally, you can add Slimscroll and FastClick plugins.
- Both of these plugins are recommended to enhance the
- user experience. Slimscroll is required when using the
- fixed layout. -->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment