<?php
function AfterAdd()
{
//********** Redirect to another page ************
header("Location: Current_Patients_list.php");
exit();
}
function AfterEdit()
{
//********** Redirect to another page ************
header("Location: Current_Patients_list.php");
exit();
}
?>