Update index.php

parent 428d9f4e
<!DOCTYPE html> <?php
<!--
To change this license header, choose License Headers in Project Properties. /*
To change this template file, choose Tools | Templates Romauli Feronica Siregar
and open the template in the editor. */
-->
<html> require_once 'Employee.php';
<head> require_once 'Department.php';
<meta charset="UTF-8"> require_once 'Company.php';
<title></title>
</head> $emp1= new Employee();
<body>
<?php echo "DATA KARYAWAN:";
// put your code here
?> $emp1->setEmployeeName("roma");
</body> echo '';
</html>
$emp1->getEmployeeTitle();
echo '<br>';
$emp1->getEmployeeMontlySalary();
echo '<br>';
$emp1->getProfileEmployee();
echo '<br>';
$emp2= new Department();
echo $emp2->getDepartmentName();
$emp3= new Company();
echo $emp3->getCompanyName();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment