نتایج جستجو برای: recurrent bacterial meningitis

تعداد نتایج: 344589  

2016
Anusha van Samkar Matthijs C. Brouwer Arie van der Ende Diederik van de Beek

The zoonotic pathogen Campylobacter fetus is a rare cause of bacterial meningitis. Little is known about the clinical characteristics, predisposing factors and outcome of C fetus meningitis in adults. We report cases of C fetus meningitis in a nationwide cohort study of adult bacterial meningitis patients in the Netherlands and performed a review of the literature. Two patients with C fetus men...

2016
Ewelina Gowin Jacek Wysocki Dirk Avonts Danuta Januszkiewicz-Lewandowska Michal Michalak

INTRODUCTION Neisseria meningitidis and Streptococcus pneumoniae are the most frequent pathogens responsible for meningitis beyond the neonatal period. Aseptic meningitis is a disabling condition, but bacterial meningitis if left untreated is 100% fatal. The aim of the study was to analyze the usefulness of biochemical and hematological parameters in distinguishing between bacterial and non-bac...

Journal: :Proceedings of the Royal Society of Medicine 1964

Ali ZAMANI, FATEMEH ZAMANI,

Background : Meningitis is more common during the neonatal period than other periods of life and has a prevalence of one in 1000 live births. The similarity of its clinical manifestations with other infectious diseases makes it difficult to diagnose. The aim of the current study was to determine the relationship between age, sex, clinical signs and symptoms and laboratory test results of ne...

Journal: :international journal of molecular and clinical microbiology 0
zivar salehi department of biology, faculty of sciences, university of guilan, rasht, iranسازمان اصلی تایید شده: دانشگاه گیلان (guilan university) lida gholizadeh department of biology, faculty of sciences, university of guilan, rasht, iranسازمان اصلی تایید شده: دانشگاه گیلان (guilan university)

meningitis is an inflammation of the membranes that surround the brain and spinal cord, thereby involving the arachnoid, the pia and the cerebrospinal fluid (csf). it is divided into viral and bacterial meningitis. for different reasons the diagnosis of bacterial meningitis is very important. the examination of csf samples may provide information about causative microorganism. the sensivity of ...

Background and Objective: Hospitals niche as a source and repository for microbial infections are playing a significant role in the health of hospitalized patients. Bacteria are playing an essential role in human and animal blood infections and meningitis. The prevalence of bacterial agents and their susceptibility patterns are fundamental goals of current research. Materials and Methods: Samp...

ثبوتی, بهنام , جوادی‌نیا , شیما , خسروی, نسترن , طباطبایی, آذردخت , عسگریان, رامین , نوربخش, ثمیله ,

Background: Cerebrospinal Fluid (CSF) culture for distinction between aseptic and bacterial meningitis can be difficult and long-term, and other diagnostic methods are under studying. This study aimed to assess the diagnostic value for the levels of Interleukin 1 (IL-1), IL-6 and IL-8 of CSF in the children and adolescent with meningitis. Methods: Fifty-one patient with meningitis between one ...

Mohammad hossein Amid,

To develop such a system, a retrospective study was performed on patients with meningitis admitted at three major pediatric hospitals during a ten-year period. In this study, important cerebrospinal fluid ( CSF) indices were measured and compared in cases of bacterial and viral meningitis. Glucose, protein and white blood cells (WBCs) were analyzed in 609 patients with meningitis and scores wer...

Esmat Khajehpour, Hassan Khajehpour Mahdi Eftekhari Mehrdad Farokhnia, Mostafa Langarizadeh

Introduction Bacterial meningitis is a known infectious disease which occurs at early ages and should be promptly diagnosed and treated. Bacterial and aseptic meningitis are hard to be distinguished. Therefore, physicians should be highly informed and experienced in this area. The main aim of this study was to suggest a system for distinguishing between bacterial and aseptic meningitis, using f...

Journal: :Journal of neurology, neurosurgery, and psychiatry 2011
Ludo J Vanopdenbosch Peter Dedeken Jan W Casselman Stephan A P A Vlaminck

OBJECTIVES The techniques currently used to detect a cerebrospinal fluid (CSF) leak are an indium radionucleotide scan and a CT scan with intrathecal iodinated contrast agent. They have a low spatial and temporal resolution and are unpleasant for the patient. This open-label prospective observational cohort study was designed to investigate the feasibility, success ratio, complications and ther...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->