Server : Apache System : Linux profile 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64 User : apache ( 48) PHP Version : 8.0.28 Disable Function : NONE Directory : /var/www/html/mmishra/erp-21-08-2019/ |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>ERP @ IIITA</title> <base href="https://erp.iiita.ac.in/" /> <link rel="shortcut icon" href="favicon.ico"> <link rel="icon" type="image/gif" href="animated_favicon1.gif"> <meta charset="utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="enterprise resource planning, institute resource planning, iiita resource planning" /> <meta name="author" content="Dr. M.K. Mishra, System Analyst" /> <link rel='SHORTCUT ICON' href="images/logo.ico" /> <link rel="stylesheet" type="text/css" href="css/erp_style.css" media="screen" /> <link rel="stylesheet" type="text/css" href="css/erp_menu.css" media="screen" /> <link rel="stylesheet" type="text/css" href="css/calendar.css" media="screen" /> <link rel="stylesheet" type="text/css" href="css/fontawesome-all.css" media="screen" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous" /> <script type="text/javascript" src="js/calendar.js"></script> <script type="text/javascript" src="js/fontawesome-all.js"></script> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/erp_ajax.js"></script> <script type="text/javascript" src="js/hilitor.js"></script> </head> <body> <script type="text/javascript" src="js/erp_body.js"></script> <form id='erpForm' name='erpForm' method='POST' enctype='multipart/form-data'> <?php // This is the requirements for ERP Framework to initiate the home controller, model, view require_once(__DIR__ .'/models/erp_model.php'); require_once(__DIR__ .'/controllers/erp_controller.php'); require_once(__DIR__ .'/views/erp_view.php'); $erpModel = New erpModel(); $erpController = New erpController($erpModel); $erpView = New erpView($erpController, $erpModel); print $erpView->erpHeader(); // render ERP header content print $erpView->erpContent(); // render ERP main content print $erpView->erpFooter(); // render ERP footer content ?> </form> </body> </html>