| Current Path : /var/www/html/mmishra/iws8/html/pcstore/backupxxxxxxx/ |
| Current File : /var/www/html/mmishra/iws8/html/pcstore/backupxxxxxxx/entry_master_customer.php |
<?php
$tbl = $customer_master;
echo "<b>Customer Entry</b><br>";
include "entry_person.php";
$mycustomer = new customer($rid,$tbl,$conf);
$mycustomer->get_data_from_form();
switch ($_REQUEST["submit"]){
case "SAVE":
$mycustomer->insert_update_table();
break;
case "DELETE":
$mycustomer->delete_from_table();
break;
}
$mycustomer->show_form();
?>