-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.php
More file actions
39 lines (39 loc) · 1.24 KB
/
Copy pathform.php
File metadata and controls
39 lines (39 loc) · 1.24 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
<?php
$title = "Form";
?>
<!doctype html>
<html lang="en">
<?php
include_once 'head.php';
?>
<body class="bg-light">
<div class="container">
<div class="row justify-content-center mt-5">
<div class="col-md-5">
<div class="card">
<div class="card-body">
<form action="form.php" method="post">
<div class="form-group">
<label for="search">Search</label>
<input name="search" id="search" type="text" class="form-control">
</div>
<div class="row justify-content-center">
<div class="col-auto">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<?php if(isset($_GET["search"]) && trim($_GET["search"]) != ""): ?>
<div class="row justify-content-center mt-5">
<div class="col-md-5">
<h3 class="text-center">You've searched for <?= $_GET["search"] ?></h3>
</div>
</div>
<?php endif; ?>
</div>
</body>
</html>