36210-vm/templates/arrest_memo.php
Flatlogic Bot 07aa353708 1
2025-11-24 15:14:58 +00:00

22 lines
439 B
PHP

<?php
function generate_arrest_memo($case) {
$content = "
ARREST MEMO
FIR No.: {$case['fir_no']}
Police Station: {$case['ps']}
Accused Name: {$case['accused_name']}
Sections: {$case['sections']}
This is to certify that the accused person named above has been arrested in connection with the above-mentioned case.
Date: " . date('Y-m-d') . "
Time: " . date('H:i:s') . "
Signature:
(Investigating Officer)
";
return $content;
}