Mt. Zion Cemetery *
2 miles S of Sulphur City, Washington County
* All legible headstones have been photographed - 13 August 1998
This is a very old cemetery and most of the stone are illegable.
We are trying to verify the unknown dates.

Mt. Zion Cemetery - 2 miles west of Sulphur City, Washington County, Arkansas


 
 
 
 
 
Surname
First
Birth
Death
Other
               Ashbrook            
Susan E
1844
1888
mother
Bassett
J N
1820
1899
-
Bassett
Louisa H
1849
1864
-
Bassett
Susan
1817
1888
-
Bassett
Therresa
-
-
-
Bean
Lear
1839
1870
-
Brooks
Henry L
17 Oct 1862
18 July 1864
stone broken and on ground
Campbell
Elender
???
???
stone sunken in ground
Carney
Charles A
ssw Lillian M
Carney
Lillian M
???
???
ssw Charles A
Carter
Dick
???
???
  son of J C and H M
Carter
Halam
22 Feb 1810
?? Dec ????
wife of Jno C Carter
Carter
Jno C
?? Dec 1828
?? Oct ????
-
Carter
Little Willie
???
???
baby stone
Carter
Marquis Mary Beatrix
5 Oct 1898
23 Sept 1984
-
Cochenour
Floyd
???
???
son
Gorham
Dixie Irene Carter
23 Aug 1894
2 MAy 1984
ssw Henry Newton
Gorham
Henry Newton Jr.
7 Sept 1919
14 Nov 1982
ssw Dixie IreneCarter
Hauptman
F S
?? Oct 18?9
Nov 1899
buried in weeds
Hill
Joe B
???
???
  son of J D and N J
Hill
Jos
???
???
Co B Ind Inf
Hill
Milton G
military stone
no dates
-
Jett
Elizabeth
1 Sep 1842
25 Jan 1918
ssw Wm A Jett
Jett
George W
???-???
-
Jett
Wm A
???
???
ssw Elizabeth Jett
Jett
William Alexander
28 April 1925
4 Nov 1928
-
Jett
William P
12 Oct 1869
18 Jan 1939
-
Johnson 
Nancy Kesia
???
???
wife of B F
Jones
Absalom B
???
31 March 1862
age 27 yrs
Jones
Daniel
???
???
-
Jones
Eliza T
???
  21 June 18?? 
dau of Riley and Nancy Jones
Jones
J C
???
???
son of Riley and Nancy
Jones
Lida
???
???
-
Jones
Nancy
26 April 1805
9 Sept 1883
wife of Riley Jones
Jones
Rev. Riley
8 Nov 1805
5 May 1889
-
Jones
Russell D
???
???
son of John & Dora
Laymon
Infant of J H and M E
???
???
-
Laymon
J M
???
???
-
Laymon
Mary B
ssw J M Laymon
Laymon
Mary E
???
???
-
Lewis
Amanda M
???
???-
Lewis
Bayles G
14 Dec 1882
13 March 1937
(B G above Bales G)
Lewis
Lettie
1828
1913
wife of ?
Lewis
Sallie
???
???
-
Mills
Enos M
???
???
-
Mitchell
J H
2 April 1848
6 March 1896
-
Mitchell
Mrs. J H
???
???
-
Nicholes
David
???
15 Mar 1868
age 10 years
Parker
Debby
10 May 1855
1 Dev 1869
Daughter of Sarah and Pleasant
Parker
Pleasant
???
???
Parker
Sarah
???
???
-
Parker
S B
???
???
-
Parker
William M
???
???
-
Perry
Dennis L
???
???
ssw Sarah A
Perry
Sarah A
???
1911
wife of D Perry
Ramey
Emaline
21 Jan 1844
25 Jan 1915
ssw Ephraim
Ramey
Ephraim
14 Mar 1849
6 Jan 1924
ssw Emaline
Ramey
George
???
???
ssw Henry C Ramey
Ramey
Henry C
???
???
ssw George Ramey
Ramey
Ida M
1887
1907
-
Ramey
Infant Girl
????
????
Infant girl of W B
Ramey
W B
???
???
-
Ritter
Jas. M 
2 May 1858
22 Oct 1884
-
 Stambaugh 
J T 
4 Feb 1874
20 July 1937
-
Stout 
D L 
no dates
no dates
-

 
Click here for Newspaper Obituaries    Click here for AIS Census Indexes
 

 
Findit-Quick.com

 

#!/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