| |
| <?php |
| require_once "config.php"; |
| $q = mysqli_query($con,"SELECT MAX(no) FROM tbl_datang"); |
| $row = mysqli_fetch_array($q); |
| $no = ''; |
| if($row['0'] == "") { |
| $no .= '1'; |
| } else { |
| $angka = $row['0']; |
| $angka ++; |
| $no .= $angka; |
| |
| } |
| ?> |
| <!doctype html> |
| <section id="content" class="body"> |
| <form class="form" action="proses.php" method="post" enctype="multipart/form-data"> |
| <!doctype html> |
| <html> |
| <head> |
| |
| <h2>Absensi Online</h2> |
| <p> </p> |
| <table><tr><td valign=top> |
| <h1> Berbasis Web dengan Menggunakan Webcam </h1> |
| <h3>PT PLTU TARAHAN</h3> |
| |
| <!-- First, include the JPEGCam JavaScript Library --> |
| <script type="text/javascript" src="webcam.js"></script> |
| |
| <!-- Configure a few settings --> |
| <script language="JavaScript"> |
| webcam.set_api_url( 'test.php' ); |
| webcam.set_quality( 90 ); // JPEG quality (1 - 100) |
| webcam.set_shutter_sound( true ); // play shutter click sound |
| </script> |
| |
| <!-- Next, write the movie to the page at 320x240 --> |
| <script language="JavaScript"> |
| document.write( webcam.get_html(320, 240) ); |
| </script> |
| |
| <!-- Some buttons for controlling things --> |
| <br/><form> |
| <input type=button value="Configure..." onClick="webcam.configure()"> |
| |
| <input type=button value="Take Snapshot" onClick="take_snapshot()"> |
| </form> |
| |
| <!-- Code to handle the server response (see test.php) --> |
| <script language="JavaScript"> |
| webcam.set_hook( 'onComplete', 'my_completion_handler' ); |
| |
| function take_snapshot() { |
| |
| document.getElementById('upload_results').innerHTML = '<h1>Uploading...</h1>'; |
| webcam.snap(); |
| } |
| |
| function my_completion_handler(msg) { |
| |
| if (msg.match(/(http\:\/\/\S+)/)) { |
| var image_url = RegExp.$1; |
| |
| document.getElementById('upload_results').innerHTML = |
| '<h1>Upload Successful!</h1>' + |
| '<h3>JPEG URL: ' + image_url + '</h3>' + |
| '<img src="' + image_url + '">'; |
| |
| |
| webcam.reset(); |
| } |
| else alert("PHP Error: " + msg); |
| } |
| </script> |
| |
| |
| </td><td width=50><td><?php echo $foto_datang;?></td></td><td valign=top> |
| <div id="upload_results" style="background-color:#eee;"></div> |
| </td></tr></table> |
| |
| |
| <!-- tambahkan jquery dan jquery ui --> |
| <script type="text/javascript" src="js/jquery-1.9.0.js"></script> |
| <script type="text/javascript" src="js/jquery-ui.min.js"></script> |
| <link type="text/css" rel="stylesheet" href="js/jquery-ui-1.10.4.custom.min.css"/> |
| </head> |
| <body> |
| |
| <li> |
| <label>No </label> |
| <input type="text" name="no" size="15" value="<?php echo $no; ?>" readonly="readonly"/> |
| </li> |
| <li> |
| <label>ID</label> |
| <input type="text" name="id" size="20" class="form-control" id="id" /> |
| </li> |
| <li> |
| <label>Nama Lengkap</label> |
| <input type="text" name="nama" id="nama" readonly="readonly"/> |
| </li> |
| <li> |
| <label>Tanggal*</label> |
| <input type="date" name="tanggal"size="30" value="<?php date_default_timezone_set('Asia/Jakarta'); |
| $tanggal= mktime(date("m"),date("d"),date("Y")); |
| $tglsekarang = date("Y-m-d", $tanggal); |
| echo $tglsekarang;?>" readonly=/> |
| <li> |
| <label>Jam Datang*</label> |
| <input name="jam_datang" type="text" id="jam_datang" value="<?php $today = date("H:i:s"); echo $today;?>" readonly/> |
| </li> |
| <li> |
| <label>Foto Datang*</label> |
| <input name="foto_datang" type="text" id="foto_datang" size="60" required /> |
| </li> |
| |
| <script> |
| $(function() { |
| $( "#id" ).autocomplete({ |
| source: "get_product.php", |
| minLength: 2, |
| select: function( event, ui ) { |
| $('#nama').val(ui.item.nama); |
| } |
| }); |
| }); |
| </script> |
| <label></label> |
| </li> |
| |
| |
| |
| <p> </p> |
| <label></label> |
| <div align="right"> |
| <p align="left"> |
| <input name="absen" type="submit" id="absen" value="ABSEN" /> |
| </p> |
| <p> </p> |
| <p> |
| <label></label> |
| <p align="left"> |
| |
| <label></label> |
| <div align="left"></li> |
| </p> |
| </div> |
| </div> |
| </form> |
| </section> |
| <span class="form"> |
| <label></label> |
| </span> |
| </body> |
| </html> |
| |
| |