This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Kendaraan{ | |
private $nomerkendaraan; | |
public function getNomerKendaraan(){ | |
return $this->nomerkendaraan; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Parkir{ | |
public function chekIn($idParkir,$statuss,$nopol,$timestart,$tanggal,$timeend){ | |
$status=false; | |
//$dom = new DOMDocument("1.0","UTF-8"); | |
//$parkirkendaraan = $dom->createElement("parkirkendaraan"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>sistem Parkir</title> | |
<script type=text/javascript> | |
function functionTimer() | |
{ | |
setInterval(function() | |
{ | |
myTimer() | |
},1000); |