-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtedarikciler-ekle.php
62 lines (43 loc) · 1.21 KB
/
tedarikciler-ekle.php
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
<?php
session_start();
if(!isset($_SESSION["login"])){
?>
<meta http-equiv="refresh" content="0;URL=giris.php">
<?php
} else
{
?>
<!-- GİRİŞ KONTROL -->
<?php include("kafa.php") ?>
<?php include("menu.php") ?>
<?php include("kontrol/veritabani.php") ?>
<nav id="secondary">
<ul>
<li ><a href="tedarikciler.php">Tedarikçiler</a></li>
<li class="current"><a href="tedarikciler-ekle.php">Tedarikçi Ekle</a></li>
</ul>
</nav>
<section id="content">
<h2>Tedarikçi ekleniyor.</h2>
<form class="wymupdate" action="tedarikciler-ekle-kontrol.php" enctype="multipart/form-data" method="post" >
<div class="column left">
<section>
<label for="label">
Tedarikçi Adı
</label>
<div>
<input id="ad" name="ad" type="text" class="required" minlength="2" />
</div>
</section>
</div>
<div class="column right">
<p><input type="submit" class="button primary submit" value="Tedarikçiler Ekle" /></p>
</div>
<div class="clear"></div>
<h2> </h2>
<br />
</form>
</section>
<!-- GİRİŞ KONTROL -->
<?php include("ayak.php"); ?>
<?php } ?>