War Eagle Cemetery (also known as Blackburn)
On a private property right above War Eagle Mill
At War Eagle, once in Washington County, now in Benton County.
(Section 34 Township 19 Range 28)

* All legible headstones have been photographed as of 15 April 2000




Agnew - Clara dau of Mr and Mrs Walter Agnew, Pearl
Baylar - Preston Eugene son of J O and Carrie
Bishop - Cleva A
Black - Billy Kent, Estelle Kent
Blackburn - Catherine, D N, Dorinda W, Edward F, Elbert, Ellen, Infant (several), JAC, James, JGS, JH, John N, Josiah, Lizziet, Margaret Ann, Mary A, Mary Cate, Mary, ME, Ollie, P W, Rachel, Samuel S, Simon, Sylvanus W, William J, Wm Jasper, ZJ
Brown - Hugh Vance
Burkes - Edna B, Hughie Sam
Burks - Edna P, G, J W, Lester, Louisa K (Blackburn), Margaret E, Samuel, William J
Castle - Ida A McCoy
Churchwell - J A, Zeller G
Clardy - Cora
Cook - Ada N, Annabell, Garland S, Infant, Samuel
Crossman - Arthur E, Loyd, Lura Board
Cummings - Maynard Leroy, Odessa Chambers, OMD
Davis - Rev T J
Denney - Frederick
Dutton - Mose, Sarah J
Fogle - HS, Infant, JG
Frost -  Dean Elmo,  Elizabeth, Infant Dau of WL and ML,  Infant Son of WL and ML2, Frost, Joshua Doss, Margaret L,  Wiley L, Nina Brown
Geyer - Robert Lee Military
Gilliam - Harriet, Harry, Mack
Gilliand - Sophia Zinke
Greer - Dane, Gail McKay
Haley - Pearl, William Carl
Hart - Beulah, Doyle
Hegwood - Alonzo, Dorothy M, Ellen, Infant dau of JL and ME
Homesly - Matilda
Huckaby - Bill J, Effie Lee, Elgene, Francese, Grover C, Hattie Marker, Jack, John R, L C, Martha C,  Mary M, Susan
Huff -  Infant, Lucy Maude (Blackburn)
Ingraham - Lee
Ingram, Edith, Edward W
Kilburn - Sterling P
Kirk - Blanch S
Lawson - V G
Ledbetter - Barbara C McKinney, Elwood Blake, H L,  Hattie M (Huckaby), Jessie M dau of Mr and Mrs H L, Joetta A (Roberts)
Macon - Nancy C
Martin - W N
McCoy - Donald W, Josephine Frost
Means - Claud, Edna Close, Infant, Katie, Van
Melton - Margaret
Miles - Idah Orilla dau of M and Caroline
Moore - Noble Hamilton
Morgan - Magie
Neff - Janey Will A
Pittillo - Charlie, Mary wife of James T
Richards - Alfred R, Ella May Rizley, OG
Rizley - Rosie
Rutherford - Bonnie, Harvey
Samuelson - Frank H
Sharp - Dell, Emeline, J B Jr, John K, Laura, Richard
Sharpe - Elizabeth
Shepherd - Lillian, Melville R, Nancy E, Oscar, Zula
Smith - Infant son of ME and ML
Stafford - Bubby Gerald, Dora Myrtle, Porter F
Steelman - Max Military
Sumner - H C, Ettie, Squire
Sutton - Johnnie, Marilous
Tomerlin - Nancy M, S M
Townsend - Andrew J, Calvin, Carrol, James, Louisa, Ollie Jr, Steve, Walsie B



Click here for Newspaper Obituaries    Click here for AIS Census Indexes


#!/usr/bin/perl ############################################################################## # Cliff's Banner Rotator Version 3.01 # # Copyright 1998 Shaven Ferret Productions # # Created 7/8/98 Last Modified 09/10/01 # # Available at http://www.shavenferret.com/scripts # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1998 Shaven Ferret Productions All Rights Reserved. # # # # This script can be used free of charge so long as you don't change any # # part of it. By using this script you agree to indemnify me from any # # liability that might arise from its use. In simple English, if this # # script somehow makes your computer run amuck and kill the pope, it's not # # my fault. # # # # Redistributing\selling the code for this program without prior written # # consent is expressly forbidden. # ############################################################################## require "ad-lib.cgi"; &setup; open(FILE,"$datadir/main.txt"); @banners = ; close(FILE); print "Content-type: text/html\n\n"; srand; $i = int(rand(250)); if ($i != 64) { for ($i = $#banners; $i >= 0; $i--) { ($filenum,$weight,$inactive,$hideit,$hidetext,$hideact) = split(/\|/, $banners[$i]); if ($inactive == 0 && ($hideit == 0 || ($hideit && ($ENV{'DOCUMENT_URI'} =~ /$hidetext/ && $hideact == -1) || ($ENV{'DOCUMENT_URI'} !~ /$hidetext/ && $hideact == 0)))) { for ($j = 1; $j <= $weight; $j++) { splice(@okbanners,0,0,"$filenum|$i"); } } } $bannernum = int(rand($#okbanners+1)); ($filenum,$linenum) = split(/\|/,$okbanners[$bannernum]); open(FILE,"$datadir/h$filenum.txt"); @lines = ; close(FILE); print "$lines[1]"; ($trackctr,$java,$dimp,$imp,$dctr,$ctr,$ddate,$lmonth,$lday,$lyear,$conditions,$autoact,$email) = split(/\|/, $lines[0]); open(FILE,"$datadir/c$filenum.txt"); $temp = ; close(FILE); ($aimp,$actr) = split(/\|/,$temp); $aimp++; open(FILE,">$datadir/c$filenum.txt"); print FILE "$aimp|$actr"; close(FILE); if ($dimp || $dctr || $ddate) { &checkdel; } } # Changing or deleting the following line of this script is illegal. else { print "

Banner Rotator from Cliff's Perl Scripts

\n"; } sub checkdel { if ($dimp && $aimp >= $imp) { $true = -1; } elsif ($dimp) { $false = -1; } if ($dctr && $actr >= $ctr - 1) { $true = -1; } elsif ($dctr) { $false = -1; } if ($ddate) { &getdate; $lmonth++; if (($year > $lyear) || ($year == $lyear && $mon > $lmonth) || ($year == $lyear && $mon == $lmonth && $mday >= $lday)) { $true = -1; } else { $false = -1; } } if ($true && ($conditions == 0 || $false == 0)) { &deleteone; } }


Back to Benton County    Back to Arkansas Counties    Back to Jean-ealogy.com home