Esempio n. 1
0
	height:50px;
	line-height:50px;
	width:126px;
	text-decoration:none;
	text-align:center;
}.classname:hover {
	background-color:#53537A;
}.classname:active {
	position:relative;
	top:1px;
}</style>
<?php 
// include db handler
require_once 'include/DB_update.php';
if (empty($_POST["phone"])) {
    echo "";
} else {
    $db = new DB_update();
    $result = $db->get_patient_details($_POST["phone"]);
    $name = $result["name"];
    $age = $result["age"];
    $DOB = $result["DOB"];
    $sex = $result["sex"];
    echo "<br>Name: " . $name;
    echo "<br>Age: " . $age;
    echo "<br>DOB: " . $DOB;
    echo "<br>Sex: " . $sex;
}
?>
</center>
</font>