White Oak Cemetery
North of Savoy and West of Wheeler on County Road 874
Washington County, Arkansas
Surname |
Given name(s) |
Birth date |
Death date |
Other |
Barron |
Ronnie Joedell |
20 Sep 1967 |
2 Jul 1993 |
son and brother |
Clark |
Mary F. |
1857 |
19- |
ssw Benjamin F. |
Clark |
Benjamin F. |
1853 |
1929 |
ssw Mary F. |
Cowan |
Russell L. |
19 Sep 1901 |
22 Oct 1973 |
ssw S. Ruth |
Cowan |
S. Ruth |
20 Sep 1905 |
19 Mar 1987 |
ssw Russell L. |
Frazier |
Bessie Maye |
27 Jan 1929 |
12 Oct 1984 |
ssw Loyd Lee |
Frazier |
Loyd Lee |
20 Jun 1921 |
7 Apr 1999 |
ssw Bessie Maye |
Gary |
Frances |
20 Nov 1866 |
no date |
ssw John W. |
Gary |
John W. |
10 Jul 1866 |
5 Jul 1920 |
ssw Frances |
Gill |
Charles F. |
1868 |
1934 |
- |
Humphreys |
Carrie V. |
29 Aug 1861 |
13 Jun 1918 |
wife of J. H. |
Lawson |
Cleo Franklin |
5 Jan 1927 |
20 Jul 1997 |
ssw Mary Ellen¹ |
Lawson |
Mary Ellen¹ |
20 Oct 1945 |
- |
ssw Cleo Franklin |
Martin |
Florence A. |
1871 |
1957 |
ssw George S. |
Martin |
Florence E. |
15 Feb 1900 |
17 Feb 1900 |
infant |
Martin |
George S. |
1867 |
1917 |
ssw Florence A. |
McCoy |
David Leslie |
17 Dec 1922 |
22 Dec 1922 |
son of D. N. & Luella |
Phillips |
J. H. |
25 Jul 1830 |
16 Oct 1897 |
ssw W. N. |
Phillips |
W. N. |
9 Oct 1856 |
20 Dec 1895 |
ssw J. H. |
Porter |
James T. |
- |
5 Sep 1915 |
ssw Virginia F.² |
Porter |
Virginia F. |
- |
2 July 1916 |
ssw James T.³ |
Robinson |
Delia |
29 Jan 1929 |
10 Feb 1905 |
hand made stone |
Townsend |
Laura J. |
1890 |
1907 |
- |
West |
Minnie B. |
1925 |
1926 |
- |
West |
Wilma Helen |
1916 |
1936 |
wife of Lawrence A. |
Wheeler |
John H. |
1863 |
1942 |
ssw Martha J. |
Wheeler |
Martha J. |
1863 |
1929 |
ssw John H. |
Wilber |
Charles A. |
1865 |
1901 |
- |
Wilber |
Martha Ann |
1845 |
1914 |
wife of Wilber |
Williams |
Mary A. |
1876 |
1961 |
- |
¹ Stone says Mary Ellen Henry with Maria Elena Chavarin
underneath
² Stone says Aged 78 years
³ Virginia's side says Aged 64y, 11m, 4d
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 Washington County Back to Arkansas Counties Back to Jean-ealogy.com home