• File: functions_inc.php
  • Full Path: /home/u787841361/domains/cafirmjaaj.in/public_html/admin/functions_inc.php
  • Date Modified: 09/20/2025 1:16 PM
  • File size: 280 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
	function pr ($arr){
		echo '<pre>';
		print_r($arr);
	}
	function prx ($arr){
		echo '<pre>';
		print_r($arr);
		die();
	}
	function get_safe_value($con, $str){
		if ($str!='') {
			$str=trim($str);
			return mysqli_real_escape_string($con, $str);
		}
	}
?>