-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.php
More file actions
30 lines (22 loc) · 872 Bytes
/
Copy pathcheck.php
File metadata and controls
30 lines (22 loc) · 872 Bytes
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
<!DOCTYPE html><html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>WorldCat ISBN Check</title>
</head><body>
<h1>WorldCat ISBN Check</h1>
<br><br><br>
<h4><strong>Copy ISBN list and paste here: </strong></h4><br>
<form method='post' action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">
<textarea name="isbnlist" cols="80" rows="10" style="border: 2px solid #005481;" required></textarea><br><br>
<input type='submit' class='submit' name='submit' value='Submit'></div>
</form>
<br><br><br><br><br><br>
<br><br><br><br><br><br>
<br><br><br><br><br><br>
<br><br><br><br><br><br>
<br><br><br><br><br><br>
<div style="width:90%;">
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
print $results;
}?>
</div>
</body></html>