Zinnamon Cemetery
Hwy 70 N of Devil's Den State Park, Washington
County
Zinnamon Church (New Building)
Zinnamon Church (old and new)
Zinnamon Church sign
Zinnamon Gate Entrance
Cemetery Outhouse
Survey Marker
Abel - Henry E , R Haston
Boyd - Jerod Kiley, Sarah Violet Atha, Wayne
Oval
Bradshaw - Rebecca
Bruner - Willard Lonzo
Butterfly - Jackie
Caviness - Sarah Ann
Cobb - James R, Pireny M.
Coker - BW Bea, JH Jim
Cook - Garland E
Copeland - Joe H, Lizzie Ford
Cox - Lois Jean
Crawley - Clara E Tucker, Noah Neut
Crowley - Otis
Cummings - Caroline M
Deaton - Burnadeene, E Ellis, Emzley Boyd, Julia
M, Samuel B
Derry - Billy R World War2
Dotson - Clarence, Fannie, Hattie, Lee Roy, Louvene,
Lucinda Ellen, Marion E, S A, Wain
Everett - John Boswell
Gabbard - Florence
Gooding - Allie McAdoo, Easter C, Sarah M McAdoo,
Tom T
Green - Amanda S, Grace, Keith Ray, Nancy Evlin,
Orlander
Hall - George
Harrell - JB and Pauline A
Hopper - Berline
Howell - Larry D
Jagodzinski - Mildred and Francis
Long - Beatrice Bea
McAdoo - Artis, Duane, George, JW, Lewis A, Lottie,
Myrle, Myrtle, Pauline, Ray, Tommie Gayle, Wathena
McBride - Alice Dean Walker, P A
McClellan - Delia, E D
Michael - Robert Wade
Miller - Alice Grace, Jeff Davis, Lewis Henry,
Roxie
Murphy - Ada
Newkirk - Lela R and John B
Peterson - Alfred A, Cephus E, Fannie E,
Prater - Albert P, Dessie T, Edgar J, Louise, Oscar,
Thomas J (footstone), Thomas Melvin, William H
Richardson - Boyd, Evert L, Mary, Samuel F
Rieff - Clint Wade, Eunica McBride
Rind - W G Bill
Seals - Arthur U
Starwalt - Albert, Louisa Rachel Axlee nee Vance
Stewart - Clarence
Stuart - Edwin T
Suggs - Earnie
Taylor - Elizabeth A, Jessie Henry, JC, JE, James
Andrew, Janice L, Jessie Henry, John Thomas, Lawrence D, Louella, Nettie
Mildred, Samuel D, Samuel R, Stephen R, Wanda, William C,
William H
Treece - Jennie and Edward
Willis - Lelia E
Wright - Annie OTillie,
Cordie, Marion Edd, William Charlie
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