$result_director = $obj->common_fetch_attachement('consignee_director', 'csign_id', $_GET['val']);
    $result_attachment = $obj->common_fetch_attachement('csign_attachments', 'csign_id', $_GET['val']);
}
if (isset($_POST['submit']) && $_POST['key'] == $_SESSION['key']) {
    $finalName = array();
    $name = array();
    for ($i = 0; $i < sizeof($_POST['titles']); $i++) {
        $name[$i] = $_FILES['files']['name'][$i];
        $tmp_name = $_FILES['files']['tmp_name'][$i];
        $ext = $obj->getExtension($name[$i]);
        $newName = $obj->nameGen();
        $finalName[$i] = $newName . "." . $ext;
        move_uploaded_file($tmp_name, "attachements/csign_attach/" . $finalName[$i]);
    }
    if (isset($_GET['val']) & $_GET['val'] != "") {
        $update_result = $obj->consignee_update($_POST, $finalName, $name, $result['id'], $_SESSION['pin_id'], $_SESSION['pin_table']);
        $obj->ALertMessage("Firm updated successfully", $update_result);
        $obj->redirect("firm_update.php");
    } else {
        $consignee = $obj->consignee_registration($_POST, $finalName, $name, $_SESSION['pin_id'], $_SESSION['pin_table']);
        $obj->ALertMessage("Firm registered", $consignee);
    }
}
$_SESSION['key'] = mt_rand(1, 1000);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="main_includes/add_new_row.js"></script>