-
Notifications
You must be signed in to change notification settings - Fork 1
/
all_album.php
34 lines (31 loc) · 1.09 KB
/
all_album.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="style_all_album.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="search_result.js"></script>
<script src="all_album_fetch.js"></script>
<link href="https://fonts.googleapis.com/css?family=Rye" rel="stylesheet">
<script>
function fn(){
var x=document.getElementById("ser").value;
console.log(x);
window.open("search_album.php?y="+x+"","_self");
}
$(document).ready(function() {
document.getElementById("ser").setAttribute("placeholder","Search your favourite album");});
</script>
</head>
<body>
<?php include 'header.php';?>
<div id="cont" class="container-fluid">
<h3 id="head_text">All Albums:</h3>
<div id="all_alb" ></div>
</div>
</body>
</html>