-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathviewColumnsParent.php
44 lines (38 loc) · 1.26 KB
/
viewColumnsParent.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
<?php
/******************************************************************************/
/* Ottoman Turkish project - view documents in multiple columns */
/******************************************************************************/
/* Developed by: Steve Bagwell */
/******************************************************************************/
require "config.php";
require "head.php";
require "viewScript.php";
echo "
<script language=JavaScript>
document.getElementById('content').id = 'viewColumnsContent';
</script>
";
echo "
<link type=\"text/css\" rel=\"stylesheet\" href=\"columns.css?v=20170106\">
<table class=\"viewColumns\">
<tr>
<td>
<iframe src='viewColumns.php?iso=" . $sec_code . "&st=" . $st ."'
width=100%; height=100%;></iframe>
</td>
<td>
<iframe src='viewColumns.php?iso=" . $sec_code . "' width=100%; height=100%;></iframe>
</td>
<td>
<iframe src='viewColumns.php?iso=" . $sec_code . "' width=100%; height=100%;></iframe>
</td>
<td>
<iframe src='viewColumns.php?iso=" . $sec_code . "' width=100%; height=100%;></iframe>
</td>
</tr>
</table>
</div>
</body>
</html>
";
require "foot.php";