22 lines
439 B
PHP
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;
|
|
}
|