Used with permission from Frontline Distribution International, Inc. ©1999
All rights reserved. Can not be reproduced without permission from Frontline Distribution International, Inc.
For all who are able, purchase the autobiographies and support the people who are publishing the words of Haile Selassie I so that they can Itinue to publish Jah words for our future generations.
-Ark I
Chapters from
Volume One
My Life and Ethiopia's Progress,
Volume One: 1892-1937
ISBN: 0-94839-040-9
Library of Congress Card Catolog Number: 97-65862
Haile Selassie I
King of Kings
Volume Two
My Life and Ethiopia's Progress,
Volume Two: 1936-1942
ISBN: 0-94839-032-8
Library of Congress Card Catolog Number: 97-65862
Haile Selassie I
King of Kings
|
<%
if word_search = "" then
'***************** word display no search ********************
call display_speeches(search_condition, "", "")
else
if word_len = 1 then
'***************** word search one word with space ********************
search_condition = "word_title LIKE '% "&search_change&" %' OR word LIKE '% "&search_change&" %'"
search_statement = "Word Search " & """_"&search_change&"_"""
call display_speeches(search_condition, search_statement, "one-space")
'***************** word search one word NO space ********************
search_condition = "word NOT LIKE '% "&search_change&" %' AND " & "(word_title LIKE '%"&search_change&"%' OR word LIKE '%"&search_change&"%')"
search_statement = "Word Search " & """"&search_change&""""
call display_speeches(search_condition, search_statement, "one-no space")
'***************************************************************************
else
'***************** word search phrase NO space ********************
search_condition = "word_title LIKE '%"&search_change&"%' OR word LIKE '%"&search_change&"%'"
search_statement = "Word Search " & """"&search_change&""""
call display_speeches(search_condition, search_statement, "one-no space")
'***************************************************************************
'***************** word search multiple with space ********************
search_condition = "(word_title NOT LIKE '%"&search_change&"%' AND word NOT LIKE '%"&search_change&"%') AND "
for i=0 to word_bound
if i <> 0 then
search_condition = search_condition & " AND "
end if
search_condition = search_condition & "(word_title LIKE '% "&word_array(i)&" %' OR word LIKE '% "&word_array(i)&" %')"
Next
search_statement = "Word Search "
for i=0 to word_bound
if i <> 0 then
search_statement = search_statement & " AND "
end if
search_statement = search_statement & """_"&word_array(i)&"_"""
Next
call display_speeches(search_condition, search_statement, "multiple-space")
'***************** word search multiple NO space ********************
search_condition = "(word_title NOT LIKE '%"&search_change&"%' AND word NOT LIKE '%"&search_change&"%') AND "
for i=0 to word_bound
if i <> 0 then
search_condition = search_condition & " AND "
end if
search_condition = search_condition & "(word_title LIKE '%"&word_array(i)&"%' OR word LIKE '%"&word_array(i)&"%')"
Next
search_statement = "Word Search "
for i=0 to word_bound
if i <> 0 then
search_statement = search_statement & " AND "
end if
search_statement = search_statement & """"&word_array(i)&""""
Next
call display_speeches(search_condition, search_statement, "multiple-no space")
'***************************************************************************
end if
end if
%>
| |