-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsil-admin-mesaj.php
34 lines (31 loc) · 1.13 KB
/
sil-admin-mesaj.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
<?php
require_once "database.php";
$yaprakıd = $_GET['ID'];
$veri = new Database();
$yaprakad = $veri->getColumn("SELECT yaprakAD FROM yapraklar WHERE yaprakID=$yaprakıd")
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<title><?php echo $yaprakad ?></title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-4"></div>
<div class="col-4" style="margin-top: 250px; border:2px solid red">
<form action="sil-mesaj.php" method="POST">
<h4 class="danger">Mesaj silinecek...</h4>
<input type="text" readonly value="<?php echo $yaprakıd ?>" width="20px" name="silıd" class="form-group">
<input type="submit" class="btn btn-danger btn-sm" id="gonder" name="gonder" style=" width:75px" value="Sil">
</form>
</div>
<div class="col-4"></div>
</div>
</div>
</body>
</html>