-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsatisKayitFormu.php
More file actions
148 lines (117 loc) · 5.71 KB
/
Copy pathsatisKayitFormu.php
File metadata and controls
148 lines (117 loc) · 5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
require_once "config.php";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// hangi urunu secti onceki scriptten bu bilgiyi alir
$id= $_POST['id'];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Satış Kayıt Formu</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets2/img/favicon.png" rel="icon">
<link href="assets2/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.gstatic.com" rel="preconnect">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets2/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets2/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets2/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets2/vendor/quill/quill.snow.css" rel="stylesheet">
<link href="assets2/vendor/quill/quill.bubble.css" rel="stylesheet">
<link href="assets2/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets2/vendor/simple-datatables/style.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: NiceAdmin
* Updated: Mar 09 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<section class="section">
<div class="row">
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Satış Kaydı </h5>
<!-- General Form Elements -->
<form action="satisKaydet.php" method="POST">
<div class="row mb-3">
<label for="inputText" class="col-sm-2 col-form-label">Müşteri İsmi</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="isim">
</div>
</div>
<input type="hidden" name="id" value="<?php echo $id ?>">
<div class="row mb-3">
<label for="inputText" class="col-sm-2 col-form-label">Müşteri Tel</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="tel">
</div>
</div>
<div class="row mb-3">
<label for="inputDate" class="col-sm-2 col-form-label">Tarih</label>
<div class="col-sm-10">
<input type="date" class="form-control" name="date">
</div>
</div>
<div class="row mb-3">
<label for="inputTime" class="col-sm-2 col-form-label">Saat</label>
<div class="col-sm-10">
<input type="time" class="form-control" name="time">
</div>
</div>
<div class="input-group mb-3">
<label class="col-sm-2 col-form-label">Fiyat</label>
<span class="input-group-text">$</span>
<input type="text" class="form-control" aria-label="Amount (to the nearest dollar)" name="fiyat">
<span class="input-group-text">.00</span>
</div>
<div class="row mb-3">
<label for="inputNumber" class="col-sm-2 col-form-label">Adet</label>
<div class="col-sm-10">
<input type="number" class="form-control" name="adet">
</div>
</div>
<div class="input-group mb-3">
<label class="col-sm-2 col-form-label">Hasılat</label>
<span class="input-group-text">$</span>
<input type="text" class="form-control" aria-label="Amount (to the nearest dollar)" name="hasilat">
<span class="input-group-text">.00</span>
</div>
<div class="row mb-3">
<label class="col-sm-2 col-form-label">Submit Button</label>
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Submit Form</button>
</div>
</div>
</form><!-- End General Form Elements -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Vendor JS Files -->
<script src="assets2/vendor/apexcharts/apexcharts.min.js"></script>
<script src="assets2/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets2/vendor/chart.js/chart.umd.js"></script>
<script src="assets2/vendor/echarts/echarts.min.js"></script>
<script src="assets2/vendor/quill/quill.min.js"></script>
<script src="assets2/vendor/simple-datatables/simple-datatables.js"></script>
<script src="assets2/vendor/tinymce/tinymce.min.js"></script>
<script src="assets2/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets2/js/main.js"></script>
</body>
</html>