My patient is 22 yrs old male. He came with complaint of after going toilet. Am feeling very burning near anal region . Since 3-4 hours. No blood in stool , no hard stool. So I prescribed him zerodol sp and pan 40 . No swelling or bump on anal region

Reading File
Finding Sources
Finding Sources
Searching the Web

anal burning after defecation young male no blood treatment management

Reading File
Reading File
Based on the clinical picture and textbook evidence, here is a full clinical review of this case.

Clinical Assessment: 22M with Post-Defecation Anal Burning (3-4 hours)

Most Likely Diagnosis: Acute Anal Fissure

This presentation is textbook. Key supporting features:
  • Burning/pain after defecation lasting hours = classic for anal fissure
  • Young age (peak incidence in young adults)
  • No hard stool needed - even normal or loose stools can cause a fissure
  • No visible swelling/bump (rules out thrombosed external hemorrhoid, perianal abscess)
  • No blood (early/superficial acute fissure often has minimal or no bleeding initially)
As Sabiston Textbook of Surgery describes: "The most common presenting symptom is sharp anal pain with defecation, often described as passing 'pieces of glass' or 'razor blades.' The sharp pain can be followed by throbbing and anal spasm, which can persist for minutes to hours after bowel movements."

Differential Diagnoses to Consider

ConditionFeatures supportingFeatures against
Acute anal fissurePost-defecation burning, hours of pain, young male-
Thrombosed external hemorrhoidPerianal pain, swellingNo bump/swelling seen
Perianal abscessThrobbing constant pain, swellingNo swelling, no fever mentioned
Proctalgia fugaxSudden severe rectal painUsually nocturnal, unrelated to defecation
Pruritus aniBurning/itchingUsually more itch-dominant
STI (HSV, syphilis)If atypical locationNo risk factors mentioned

Your Prescription Review

Zerodol SP (Aceclofenac 100mg + Paracetamol 325mg + Serratiopeptidase 15mg):
  • Provides analgesic and anti-inflammatory effect - reasonable for acute pain relief
  • However, NSAIDs are not first-line for anal fissure and do not address the underlying pathophysiology (sphincter spasm + ischemia)
  • Serratiopeptidase has limited evidence in this context
Pan 40 (Pantoprazole 40mg):
  • Appropriate gastroprotection with the NSAID
What is missing from your management:
  1. Sitz baths (warm water soaks 10-20 min, 2-3x/day) - shown to relieve pain in >90% of acute fissure patients and promote healing. This is the cornerstone first-line treatment.
  2. Stool softeners / bulk-forming laxatives - Isabgol (psyllium husk) or lactulose to prevent straining and avoid re-tearing. Fiber supplementation + adequate hydration is essential.
  3. Topical anesthetic - 2% Lignocaine (lidocaine) gel applied locally before and after defecation gives significant relief
  4. Topical nitrate or CCB (if not improving in 1-2 weeks):
    • 0.2% GTN (nitroglycerin) ointment applied 2x/day - relaxes internal anal sphincter, promotes healing. ~50% healing in chronic fissures
    • OR Topical diltiazem 2% - similar efficacy with fewer headache side effects (preferred by Sabiston)

Recommended Management (Complete Protocol)

Immediate:
  • Warm sitz baths 10-15 min after each bowel movement (and 2-3x/day)
  • Isabgol/psyllium husk 1 sachet twice daily + increase water intake (2.5-3 L/day)
  • Local application of 2% lignocaine gel before and after defecation
  • Continue analgesic (can use paracetamol alone; NSAIDs optional but covered)
If no improvement in 1-2 weeks:
  • Add 0.2% GTN ointment or topical diltiazem 2% cream - apply to anal margin 2x daily
  • Re-examine to confirm diagnosis
Reassure the patient:
  • Most acute fissures heal completely with conservative management in 4-8 weeks
  • The burning lasting hours is normal and due to internal sphincter spasm - not dangerous
  • Avoid straining, spicy food, and prolonged sitting on the toilet
Red flags requiring urgent review:
  • Fissure in off-midline location (rule out Crohn's, TB, HIV, malignancy)
  • Persistent symptoms >8-12 weeks despite conservative treatment (may need surgical lateral internal sphincterotomy)
  • Associated fever, significant swelling, inability to pass stool (consider abscess)

Summary: Your prescription addresses the pain but misses the critical components - sitz baths, stool softening, and topical agents that directly treat the fissure. Add Isabgol, warm sitz baths, and lignocaine gel as immediate additions. The prognosis for this 22-year-old is excellent with conservative care.
(Sources: Pfenninger & Fowler's Procedures for Primary Care; Sabiston Textbook of Surgery 2024; Bailey & Love's Short Practice of Surgery 28e)

Create a patient handout on anal fissure self-care and activity modification

Reading File
Running Command

ls -la /tmp/workspace/ 2>/dev/null || mkdir -p /tmp/workspace && echo "created"

Why you stop

Running Command

mkdir -p /tmp/workspace/anal-fissure-handout && cat > /tmp/workspace/anal-fissure-handout/create_handout.py << 'EOF' from docx import Document from docx.shared import Pt, Inches, RGBColor from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.oxml.ns import qn from docx.oxml import OxmlElement doc = Document() # Page margins from docx.shared import Cm for section in doc.sections: section.top_margin = Cm(1.8) section.bottom_margin = Cm(1.8) section.left_margin = Cm(2.0) section.right_margin = Cm(2.0) # Set default font style = doc.styles['Normal'] style.font.name = 'Arial' style.font.size = Pt(11) def add_colored_heading(doc, text, level=1, color=RGBColor(0x1A, 0x73, 0xA8), size=16, bold=True, center=False): p = doc.add_paragraph() if center: p.alignment = WD_ALIGN_PARAGRAPH.CENTER run = p.add_run(text) run.font.name = 'Arial' run.font.size = Pt(size) run.font.bold = bold run.font.color.rgb = color return p def add_section_box_heading(doc, text, bg_color=RGBColor(0x1A, 0x73, 0xA8)): p = doc.add_paragraph() run = p.add_run(f' {text} ') run.font.name = 'Arial' run.font.size = Pt(12) run.font.bold = True run.font.color.rgb = RGBColor(0xFF, 0xFF, 0xFF) # Shade paragraph pPr = p._p.get_or_add_pPr() shd = OxmlElement('w:shd') shd.set(qn('w:val'), 'clear') shd.set(qn('w:color'), 'auto') shd.set(qn('w:fill'), '1A73A8') pPr.append(shd) p.paragraph_format.space_before = Pt(8) p.paragraph_format.space_after = Pt(2) return p def add_bullet(doc, text, bold_part=None, color=None): p = doc.add_paragraph(style='List Bullet') p.paragraph_format.space_after = Pt(2) p.paragraph_format.left_indent = Inches(0.3) if bold_part: run1 = p.add_run(bold_part) run1.font.bold = True run1.font.name = 'Arial' run1.font.size = Pt(11) run2 = p.add_run(text) run2.font.name = 'Arial' run2.font.size = Pt(11) else: run = p.add_run(text) run.font.name = 'Arial' run.font.size = Pt(11) return p def add_body(doc, text, bold=False, italic=False, color=None, center=False, size=11): p = doc.add_paragraph() p.paragraph_format.space_after = Pt(3) if center: p.alignment = WD_ALIGN_PARAGRAPH.CENTER run = p.add_run(text) run.font.name = 'Arial' run.font.size = Pt(size) run.font.bold = bold run.font.italic = italic if color: run.font.color.rgb = color return p def add_warning_box(doc, text): p = doc.add_paragraph() run = p.add_run(f' ⚠ {text} ') run.font.name = 'Arial' run.font.size = Pt(11) run.font.bold = True run.font.color.rgb = RGBColor(0xC0, 0x39, 0x2B) pPr = p._p.get_or_add_pPr() shd = OxmlElement('w:shd') shd.set(qn('w:val'), 'clear') shd.set(qn('w:color'), 'auto') shd.set(qn('w:fill'), 'FDEDEC') pPr.append(shd) p.paragraph_format.space_before = Pt(6) p.paragraph_format.space_after = Pt(6) # ───────────────────────────────────────────── # HEADER # ───────────────────────────────────────────── add_colored_heading(doc, 'PATIENT INFORMATION HANDOUT', level=1, color=RGBColor(0x1A, 0x73, 0xA8), size=18, center=True) add_colored_heading(doc, 'Anal Fissure: Self-Care & Recovery Guide', color=RGBColor(0x2E, 0x86, 0xAB), size=14, center=True, bold=True) p = doc.add_paragraph() p.alignment = WD_ALIGN_PARAGRAPH.CENTER run = p.add_run('─' * 70) run.font.color.rgb = RGBColor(0xAA, 0xAA, 0xAA) run.font.size = Pt(9) doc.add_paragraph() # ───────────────────────────────────────────── # WHAT IS AN ANAL FISSURE # ───────────────────────────────────────────── add_section_box_heading(doc, '1. WHAT IS AN ANAL FISSURE?') add_body(doc, 'An anal fissure is a small tear in the lining of the anal canal — the passage through which stool passes out of the body. It causes burning pain or sharp pain during and after passing stool, and sometimes a small amount of bright red blood on the toilet paper. The pain can last from a few minutes to a few hours after each bowel movement.') add_body(doc, 'The good news: Most acute (new) anal fissures heal completely with simple home care within 4 to 8 weeks.', bold=True, color=RGBColor(0x1A, 0x73, 0xA8)) # ───────────────────────────────────────────── # WHY IT HAPPENS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '2. WHY DOES IT HAPPEN?') causes = [ ('Hard or large stools: ', 'Straining during bowel movements can tear the delicate anal lining.'), ('Loose/frequent stools: ', 'Repeated diarrhea also irritates and tears the anal canal.'), ('Muscle spasm: ', 'After a tear forms, the internal anal sphincter muscle goes into spasm, which reduces blood flow and prevents healing — causing the burning pain that lasts for hours.'), ('Low fiber diet: ', 'Makes stools harder and more difficult to pass.'), ] for bold, rest in causes: add_bullet(doc, rest, bold_part=bold) # ───────────────────────────────────────────── # SITZ BATHS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '3. SITZ BATHS — THE MOST IMPORTANT STEP', bg_color=RGBColor(0x27, 0x8A, 0x5B)) add_body(doc, 'A sitz bath means soaking your anal area in warm (not hot) water. This is the single most effective home treatment for an anal fissure.', bold=False) add_body(doc, 'How to take a sitz bath:', bold=True, color=RGBColor(0x27, 0x8A, 0x5B)) steps = [ 'Fill a bathtub, large basin, or a sitz bath tub (available at pharmacies) with 3–4 inches of warm water.', 'Sit in it so that your anal area is submerged for 10–15 minutes.', 'Do this AFTER every bowel movement and 2–3 additional times per day.', 'The warmth relaxes the internal anal sphincter muscle, reduces spasm, improves blood flow, and significantly reduces burning pain.', 'Pat dry gently with a soft cloth — do not rub.', 'Add nothing to the water (no soap, no salt, no dettol).', ] for s in steps: add_bullet(doc, s) # ───────────────────────────────────────────── # DIET & FLUIDS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '4. DIET & FLUID CHANGES') add_body(doc, 'The goal is to keep your stools soft, formed, and easy to pass — so the fissure is not re-torn with each bowel movement.') add_body(doc, 'EAT MORE OF:', bold=True, color=RGBColor(0x27, 0x8A, 0x5B)) eat_more = [ 'Fiber-rich foods: whole wheat roti/bread, oats, dalia, brown rice', 'Fruits: banana, papaya, pear, apple with skin, guava', 'Vegetables: spinach, methi, lauki, tinda, carrots', 'Pulses and legumes (dal, rajma, chana) — in moderate amounts', 'Isabgol (psyllium husk) — 1 teaspoon in warm water or milk at bedtime', ] for item in eat_more: add_bullet(doc, item) add_body(doc, 'DRINK:', bold=True, color=RGBColor(0x27, 0x8A, 0x5B)) add_bullet(doc, 'At least 2.5 to 3 litres of water per day. Dehydration is a major cause of hard stools.') add_body(doc, 'AVOID OR REDUCE:', bold=True, color=RGBColor(0xC0, 0x39, 0x2B)) avoid = [ 'Very spicy food (red chilli, mirchi, garam masala in excess) — worsens burning', 'Maida (refined flour) products: white bread, biscuits, namkeen', 'Alcohol and caffeine — cause dehydration', 'Processed and junk food', 'Prolonged fasting — leads to hard dry stools', ] for item in avoid: add_bullet(doc, item) # ───────────────────────────────────────────── # MEDICATIONS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '5. MEDICATIONS YOUR DOCTOR HAS PRESCRIBED') meds = [ ('Pain tablet (Zerodol SP / Paracetamol): ', 'Take after food to reduce pain. Do not take on empty stomach.'), ('Isabgol (fibre supplement): ', '1 sachet or 1 tsp in warm water or milk — once or twice daily, preferably at bedtime.'), ('Local anaesthetic gel (Lignocaine 2%): ', 'Apply a small amount to the anal opening before and after passing stool to reduce burning pain. Available as Xylocaine gel.'), ('Stool softener (if prescribed): ', 'Take as directed. Do not take laxatives unless prescribed.'), ] for bold, rest in meds: add_bullet(doc, rest, bold_part=bold) add_body(doc, 'Note: Do not stop medicines without consulting your doctor, even if you feel better.', italic=True, color=RGBColor(0x77, 0x77, 0x77)) # ───────────────────────────────────────────── # TOILET HABITS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '6. HEALTHY TOILET HABITS') toilet = [ 'Do NOT strain or push hard. If stool does not come easily, do not force it — get up and try later.', 'Do not spend more than 3–5 minutes sitting on the toilet. Prolonged sitting increases pressure on the anal area.', 'Use a western toilet if available — it reduces straining compared to a squat toilet when you have a fissure.', 'After passing stool, clean gently with soft, moist toilet paper or use a handheld bidet/water. Avoid harsh dry wiping.', 'Do not use scented wipes, antiseptic washes, or soap directly on the anal opening — these irritate the skin.', 'Try to pass stool at the same time each day to train your bowel routine.', ] for item in toilet: add_bullet(doc, item) # ───────────────────────────────────────────── # ACTIVITY MODIFICATIONS # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '7. ACTIVITY MODIFICATIONS', bg_color=RGBColor(0x6C, 0x3D, 0xAA)) add_body(doc, 'REST YOUR ANAL AREA:', bold=True, color=RGBColor(0x6C, 0x3D, 0xAA)) rest_items = [ ('Avoid heavy lifting and straining: ', 'Weight lifting, carrying heavy loads, and intense abdominal exercises (crunches, sit-ups) all increase pressure in the anal canal and can worsen the fissure.'), ('Avoid prolonged sitting: ', 'If your work involves long sitting hours, get up every 30–45 minutes and walk briefly. Use a soft cushion or donut-shaped ring cushion to reduce pressure.'), ('Avoid bicycle riding and long motorcycle/car journeys: ', 'These cause direct friction and pressure on the anal area.'), ('Swimming: ', 'Generally safe and even beneficial after the acute phase — but avoid the pool for the first few days until pain reduces.'), ] for bold, rest in rest_items: add_bullet(doc, rest, bold_part=bold) add_body(doc, 'GENTLE EXERCISE IS ENCOURAGED:', bold=True, color=RGBColor(0x27, 0x8A, 0x5B)) exercise = [ 'Light walking (20–30 minutes daily) helps regulate bowel movement and reduces constipation.', 'Gentle yoga (avoid inversions and deep squats until healed).', 'Light stretching to reduce stress — stress worsens constipation.', ] for item in exercise: add_bullet(doc, item) add_body(doc, 'INTIMATE ACTIVITY:', bold=True, color=RGBColor(0x6C, 0x3D, 0xAA)) add_bullet(doc, 'Avoid anal intercourse completely until the fissure is fully healed. Inform your doctor if you have any concerns.') # ───────────────────────────────────────────── # HEALING TIMELINE # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '8. WHAT TO EXPECT — HEALING TIMELINE') timeline = [ ('Days 1–3: ', 'Pain and burning after each bowel movement. Sitz baths will give significant relief within 24–48 hours.'), ('Week 1–2: ', 'Pain should start reducing. Stool softening and diet changes begin to help.'), ('Week 4–8: ', 'Most acute fissures heal completely with conservative care.'), ('If no improvement by 2 weeks: ', 'Return for review — your doctor may add a topical muscle relaxant cream (GTN ointment or Diltiazem cream).'), ] for bold, rest in timeline: add_bullet(doc, rest, bold_part=bold) # ───────────────────────────────────────────── # WARNING SIGNS # ───────────────────────────────────────────── doc.add_paragraph() add_warning_box(doc, 'RETURN TO YOUR DOCTOR IMMEDIATELY IF YOU NOTICE ANY OF THE FOLLOWING:') warnings = [ 'Severe constant throbbing pain that does not reduce between bowel movements', 'Significant swelling, redness, or a lump appearing near the anus', 'Fever (temperature above 38°C / 100.4°F)', 'Heavy bleeding from the anal area', 'Inability to pass stool for more than 3 days', 'No improvement or worsening symptoms after 1 week of following this advice', ] for item in warnings: p = doc.add_paragraph(style='List Bullet') run = p.add_run(item) run.font.name = 'Arial' run.font.size = Pt(11) run.font.color.rgb = RGBColor(0xC0, 0x39, 0x2B) p.paragraph_format.space_after = Pt(2) p.paragraph_format.left_indent = Inches(0.3) # ───────────────────────────────────────────── # QUICK SUMMARY CARD # ───────────────────────────────────────────── doc.add_paragraph() add_section_box_heading(doc, '9. YOUR DAILY ROUTINE — QUICK CHECKLIST', bg_color=RGBColor(0x17, 0x6B, 0x87)) checklist = [ '☐ Drink 2.5–3 litres of water today', '☐ Take Isabgol at bedtime in warm water', '☐ Eat at least one high-fiber meal (vegetables, fruits, whole grains)', '☐ Take a sitz bath after every bowel movement (10–15 min)', '☐ Apply lignocaine gel before/after passing stool', '☐ Take prescribed pain tablet after food if needed', '☐ Walk 20–30 minutes (light, gentle)', '☐ Avoid straining, heavy lifting, spicy food, alcohol', '☐ Do not sit on toilet for more than 5 minutes', '☐ Take a sitz bath before bed', ] for item in checklist: p = doc.add_paragraph() run = p.add_run(item) run.font.name = 'Arial' run.font.size = Pt(11) run.font.bold = False p.paragraph_format.space_after = Pt(3) p.paragraph_format.left_indent = Inches(0.3) # ───────────────────────────────────────────── # FOOTER # ───────────────────────────────────────────── doc.add_paragraph() p = doc.add_paragraph() p.alignment = WD_ALIGN_PARAGRAPH.CENTER run = p.add_run('─' * 70) run.font.color.rgb = RGBColor(0xAA, 0xAA, 0xAA) run.font.size = Pt(9) add_body(doc, 'This handout is for informational purposes only and does not replace medical advice from your doctor.', italic=True, color=RGBColor(0x99, 0x99, 0x99), center=True, size=9) add_body(doc, 'If you have questions, please contact your treating physician.', italic=True, color=RGBColor(0x99, 0x99, 0x99), center=True, size=9) # Save path = '/tmp/workspace/anal-fissure-handout/Anal_Fissure_Patient_Handout.docx' doc.save(path) print(f"Saved: {path}") EOF python3 /tmp/workspace/anal-fissure-handout/create_handout.py

Your patient handout is ready:

Anal Fissure Patient Handout

Word Document · DOCX


Here is what is included in the handout:
9 sections in plain, patient-friendly language:
  1. What is an Anal Fissure - simple explanation of the condition
  2. Why it Happens - causes including muscle spasm, hard/loose stools, low fiber
  3. Sitz Baths - step-by-step instructions (highlighted as the most important step)
  4. Diet & Fluid Changes - what to eat more (high fiber), what to avoid (spicy food, maida, alcohol), with India-specific food examples (roti, dalia, isabgol, papaya)
  5. Medications - Zerodol SP, Isabgol, Lignocaine gel instructions
  6. Healthy Toilet Habits - no straining, time limits on the toilet, gentle cleaning
  7. Activity Modifications - avoid heavy lifting, prolonged sitting, cycling; light walking and gentle yoga encouraged
  8. Healing Timeline - what to expect day by day over 8 weeks
  9. Daily Routine Checklist - a tick-box checklist the patient can use each day
Plus a red-flag warning box with symptoms requiring immediate return to the doctor.
The language is simple enough for a general patient to understand, with Indian dietary context included.
This is a shared conversation. Sign in to Orris to start your own chat.