1 Samuel, Chapter 16
Search the Bible
Search Tips:
- Use
|for OR searches:love|faith - Use
.*for wildcards:bless.* - Common searches:
christmas,easter,judgment
/* * config.php - The configuration for a simple web program written by Alex Markley to display chunks of the Holy Bible. */ /* This file is part of PHPScripture (Formally Alex's PHPBible). PHPScripture is Copyright (C) 2003, Alex Markley PHPScripture is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ //Headerless? $config["headerless"] = FALSE; //Can be TRUE or FALSE. (Probably FALSE.) //Theme? (Only takes effect if headerless is false.) (It is the name of a folder within the themes folder.) $config["theme"] = "plain"; //No theme at all. //$config["theme"] = "eternity"; //Green and forresty. //$config["theme"] = "forest_bed"; //Green and forresty. //$config["theme"] = "aquatic_geometry"; //Blue, watery, etc. //Searching Stuff (Searching requires a sane version of GREP, and a sane shell to both be installed.) $config["good_shell"] = "/bin/sh"; //Full path to borne or bash or something similar. $config["grep_command"] = "egrep"; //Search command. $config["disable_searching"] = FALSE; //Can be TRUE or FALSE. (Probably FALSE.) //This stuff probably needs changed. ALL OF THESE VALUES SHOULD END IN A '/', EXCEPT IN VERY RARE CIRCUMSTANCES. $config["URI_prefix"] = "https://www.updated.org/bible"; //Where the script lives on the web. $config["script_suffix"] = "/"; //The name of the main script. (It may seem strange that this should end in a '/', but that is indeed the case.) $config["local_prefix"] = "/var/www/vhosts/gregabrams.com/updated.org/bible/"; //Where the script lives on the disk. $config["bible_midfix"] = "text/"; //The directory that the bible data is in. ($config["local_prefix"] . $config["bible_midfix"]) $config["themes_midfix"] = "themes/"; //The directory that the bible data is in. ($config["local_prefix"] . $config["bible_midfix"]) //This stuff doesn't need changed, but it's useful. $config["title"] = "UPDV Updated Bible Version"; //Title of the page. $config["element_wrap"] = 4; //Wrap every 5 things. $config["search_results_per_page"] = 20; // 20 search results to a page //Version information $config["version"]["major"] = 2; $config["version"]["minor"] = 17; $config["version"]["subminor"] = 0; $bible_books[0]["long"] = "John"; $bible_books[0]["short"] = "Joh"; $bible_books[1]["long"] = "Matthew"; $bible_books[1]["short"] = "Mt"; $bible_books[2]["long"] = "Mark"; $bible_books[2]["short"] = "Mr"; $bible_books[3]["long"] = "Luke"; $bible_books[3]["short"] = "Lu"; $bible_books[4]["long"] = "Greeks"; $bible_books[4]["short"] = "Gr"; $bible_books[5]["long"] = "Romans"; $bible_books[5]["short"] = "Ro"; $bible_books[6]["long"] = "1 Corinthians"; $bible_books[6]["short"] = "1Co"; $bible_books[7]["long"] = "2 Corinthians"; $bible_books[7]["short"] = "2Co"; $bible_books[8]["long"] = "Galatians"; $bible_books[8]["short"] = "Ga"; $bible_books[9]["long"] = "Ephesians"; $bible_books[9]["short"] = "Eph"; $bible_books[10]["long"] = "Philippians"; $bible_books[10]["short"] = "Php"; $bible_books[11]["long"] = "Colossians"; $bible_books[11]["short"] = "Col"; $bible_books[12]["long"] = "1 Thessalonians"; $bible_books[12]["short"] = "1Th"; $bible_books[13]["long"] = "2 Thessalonians"; $bible_books[13]["short"] = "2Th"; $bible_books[14]["long"] = "1 Timothy"; $bible_books[14]["short"] = "1Ti"; $bible_books[15]["long"] = "2 Timothy"; $bible_books[15]["short"] = "2Ti"; $bible_books[16]["long"] = "Titus"; $bible_books[16]["short"] = "Tit"; $bible_books[17]["long"] = "Philemon"; $bible_books[17]["short"] = "Phm"; $bible_books[18]["long"] = "Hebrews"; $bible_books[18]["short"] = "Heb"; $bible_books[19]["long"] = "James"; $bible_books[19]["short"] = "Jas"; $bible_books[20]["long"] = "1 Peter"; $bible_books[20]["short"] = "1Pe"; $bible_books[21]["long"] = "2 Peter"; $bible_books[21]["short"] = "2Pe"; $bible_books[22]["long"] = "1 John"; $bible_books[22]["short"] = "1Jo"; $bible_books[23]["long"] = "2 John"; $bible_books[23]["short"] = "2Jo"; $bible_books[24]["long"] = "3 John"; $bible_books[24]["short"] = "3Jo"; $bible_books[25]["long"] = "Jude"; $bible_books[25]["short"] = "Jude"; $bible_books[26]["long"] = "Revelation"; $bible_books[26]["short"] = "Re"; $bible_books[27]["long"] = "Genesis"; $bible_books[27]["short"] = "Ge"; $bible_books[28]["long"] = "Exodus"; $bible_books[28]["short"] = "Ex"; $bible_books[29]["long"] = "Leviticus"; $bible_books[29]["short"] = "Le"; $bible_books[30]["long"] = "Numbers"; $bible_books[30]["short"] = "Nu"; $bible_books[31]["long"] = "Deuteronomy"; $bible_books[31]["short"] = "De"; $bible_books[32]["long"] = "Joshua"; $bible_books[32]["short"] = "Jos"; $bible_books[33]["long"] = "Judges"; $bible_books[33]["short"] = "Jud"; $bible_books[34]["long"] = "Ruth"; $bible_books[34]["short"] = "Ru"; $bible_books[35]["long"] = "1 Samuel"; $bible_books[35]["short"] = "1Sa"; $bible_books[36]["long"] = "2 Samuel"; $bible_books[36]["short"] = "2Sa"; $bible_books[37]["long"] = "1 Kings"; $bible_books[37]["short"] = "1Ki"; $bible_books[38]["long"] = "2 Kings"; $bible_books[38]["short"] = "2Ki"; $bible_books[39]["long"] = "1 Chronicles"; $bible_books[39]["short"] = "1Ch"; $bible_books[40]["long"] = "2 Chronicles"; $bible_books[40]["short"] = "2Ch"; $bible_books[41]["long"] = "Ezra"; $bible_books[41]["short"] = "Ezr"; $bible_books[42]["long"] = "Nehemiah"; $bible_books[42]["short"] = "Ne"; $bible_books[43]["long"] = "Esther"; $bible_books[43]["short"] = "Es"; $bible_books[44]["long"] = "1 Maccabees"; $bible_books[44]["short"] = "1Ma"; $bible_books[45]["long"] = "Job"; $bible_books[45]["short"] = "Job"; $bible_books[46]["long"] = "Psalms"; $bible_books[46]["short"] = "Ps"; $bible_books[47]["long"] = "Proverbs"; $bible_books[47]["short"] = "Pr"; $bible_books[48]["long"] = "Ecclesiastes"; $bible_books[48]["short"] = "Ec"; $bible_books[49]["long"] = "Song of Songs"; $bible_books[49]["short"] = "So"; $bible_books[50]["long"] = "Sirach"; $bible_books[50]["short"] = "Sir"; $bible_books[51]["long"] = "Isaiah"; $bible_books[51]["short"] = "Isa"; $bible_books[52]["long"] = "Jeremiah"; $bible_books[52]["short"] = "Jer"; $bible_books[53]["long"] = "Lamentations"; $bible_books[53]["short"] = "La"; $bible_books[54]["long"] = "Ezekiel"; $bible_books[54]["short"] = "Eze"; $bible_books[55]["long"] = "Daniel"; $bible_books[55]["short"] = "Da"; $bible_books[56]["long"] = "Hosea"; $bible_books[56]["short"] = "Ho"; $bible_books[57]["long"] = "Joel"; $bible_books[57]["short"] = "Joe"; $bible_books[58]["long"] = "Amos"; $bible_books[58]["short"] = "Am"; $bible_books[59]["long"] = "Obadiah"; $bible_books[59]["short"] = "Ob"; $bible_books[60]["long"] = "Jonah"; $bible_books[60]["short"] = "Jon"; $bible_books[61]["long"] = "Micah"; $bible_books[61]["short"] = "Mic"; $bible_books[62]["long"] = "Nahum"; $bible_books[62]["short"] = "Na"; $bible_books[63]["long"] = "Habakkuk"; $bible_books[63]["short"] = "Hab"; $bible_books[64]["long"] = "Zephaniah"; $bible_books[64]["short"] = "Zep"; $bible_books[65]["long"] = "Haggai"; $bible_books[65]["short"] = "Hag"; $bible_books[66]["long"] = "Zechariah"; $bible_books[66]["short"] = "Zec"; $bible_books[67]["long"] = "Malachi"; $bible_books[67]["short"] = "Mal"; $bible_books[0]["medium"] = "John"; $bible_books[1]["medium"] = "Matthew"; $bible_books[2]["medium"] = "Mark"; $bible_books[3]["medium"] = "Luke"; $bible_books[4]["medium"] = "Greeks"; $bible_books[5]["medium"] = "Romans"; $bible_books[6]["medium"] = "1Cor"; $bible_books[7]["medium"] = "2Cor"; $bible_books[8]["medium"] = "Galat"; $bible_books[9]["medium"] = "Ephes"; $bible_books[10]["medium"] = "Philp"; $bible_books[11]["medium"] = "Colos"; $bible_books[12]["medium"] = "1Thes"; $bible_books[13]["medium"] = "2Thes"; $bible_books[14]["medium"] = "1Tim"; $bible_books[15]["medium"] = "2Tim"; $bible_books[16]["medium"] = "Titus"; $bible_books[17]["medium"] = "Philem"; $bible_books[18]["medium"] = "Hebrews"; $bible_books[19]["medium"] = "James"; $bible_books[20]["medium"] = "1Peter"; $bible_books[21]["medium"] = "2Peter"; $bible_books[22]["medium"] = "1John"; $bible_books[23]["medium"] = "2John"; $bible_books[24]["medium"] = "3John"; $bible_books[25]["medium"] = "Jude"; $bible_books[26]["medium"] = "Rev"; $bible_books[27]["medium"] = "Genesis"; $bible_books[28]["medium"] = "Exodus"; $bible_books[29]["medium"] = "Levit"; $bible_books[30]["medium"] = "Num"; $bible_books[31]["medium"] = "Deuter"; $bible_books[32]["medium"] = "Joshua"; $bible_books[33]["medium"] = "Judges"; $bible_books[34]["medium"] = "Ruth"; $bible_books[35]["medium"] = "1Samuel"; $bible_books[36]["medium"] = "2Samuel"; $bible_books[37]["medium"] = "1Kings"; $bible_books[38]["medium"] = "2Kings"; $bible_books[39]["medium"] = "1Chron"; $bible_books[40]["medium"] = "2Chron"; $bible_books[41]["medium"] = "Ezra"; $bible_books[42]["medium"] = "Neh"; $bible_books[43]["medium"] = "Esther"; $bible_books[44]["medium"] = "1Macc"; $bible_books[45]["medium"] = "Job"; $bible_books[46]["medium"] = "Psalms"; $bible_books[47]["medium"] = "Proverbs"; $bible_books[48]["medium"] = "Eccless"; $bible_books[49]["medium"] = "Song"; $bible_books[50]["medium"] = "Sirach"; $bible_books[51]["medium"] = "Isaiah"; $bible_books[52]["medium"] = "Jeremiah"; $bible_books[53]["medium"] = "Lament"; $bible_books[54]["medium"] = "Ezekiel"; $bible_books[55]["medium"] = "Daniel"; $bible_books[56]["medium"] = "Hosea"; $bible_books[57]["medium"] = "Joel"; $bible_books[58]["medium"] = "Amos"; $bible_books[59]["medium"] = "Obadiah"; $bible_books[60]["medium"] = "Jonah"; $bible_books[61]["medium"] = "Micah"; $bible_books[62]["medium"] = "Nahum"; $bible_books[63]["medium"] = "Habak"; $bible_books[64]["medium"] = "Zeph"; $bible_books[65]["medium"] = "Haggai"; $bible_books[66]["medium"] = "Zech"; $bible_books[67]["medium"] = "Malachi"; ?>
Search Tips:
| for OR searches: love|faith.* for wildcards: bless.*christmas, easter, judgment