prepare($query); /* */ //echo ($query); //Build Result String echo "

Detail

"; //$items = 1; $stmt->execute(); $count= $stmt->rowCount(); if($count) { while( $row = $stmt->fetch(PDO::FETCH_ASSOC) ) { echo "
"; echo "Transaction:";"
"; echo "
"; if($row['veh_date_of_first_registration']!=""){ echo"
"; } echo "
"; echo "
Registration Number:
"; echo $row['REG_NO']; echo "
"; if($row['veh_date_of_first_registration']!=""){ echo"
Date of First Registration:
"; } echo "
"; echo $row['veh_date_of_first_registration']; echo "
Maker / Make:
"; echo $row['MAK_NAME']; echo "
Model:
"; echo $row['MODEL']; echo "
Body Type :
"; echo $row['BODY_TYPE']; echo "
Chassis Number:
"; echo $row['CHASSIS']; echo "
Engine Number:
"; echo $row['ENGINE']; echo "
"; if($row['COLOR']!='NO COLOR'){ echo "
Color:
"; echo "
"; echo $row['COLOR']; } echo "
Owner Name :
"; echo $row['OWNER']; echo "
Father / Husband Name:
"; echo $row['FNAME']; echo "

Note: For all sale/purchase activities regarding motor vehicles kindly contact concerned MRA for verification of genuineness of registration certificate, vehicle file, ownership details and physical verification of vehicle etc

"; } } else { echo "
"."
Please contact concerned Motor Registering Authority for details / verification !"."
"; } } ?>