-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathviewParent.php
43 lines (35 loc) · 1.29 KB
/
viewParent.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
<?php
/******************************************************************************/
/* Developed by: Ken Sladaritz */
/* Marshall Computer Service */
/* 2660 E End Blvd S, Suite 122 */
/* Marshall, TX 75672 */
/* [email protected] */
/******************************************************************************/
require "config.php";
require "head.php";
$st = $_GET['st'];
echo "
<iframe src='view.php?iso=".$sec_code."&st=" . $st . "' width=900px; height=740px;></iframe>
<h3>Embed code:</h3>
<hr>
<iframe src='https://osmbibletextreader.com/view.php?iso=".$sec_code."' width=900px; height=740px;></iframe>
<hr>
<h3>Optional src parameters:</h3>
<table>
<tr>
<td style=\"color:brown\"> '&bibleTitle=' </td>
<td> - Default bible title to load </td>
</tr>
<tr>
<td style=\"color:brown\"> '&bookName=' </td>
<td> - Default book name to load </td>
</tr>
<tr>
<td style=\"color:brown\"> '&st=' </td>
<td> - Translate labels code </td>
</tr>
</table>
";
require "foot.php";
?>