<?php
ob_start();
session_start();
/*
* Getting MAC Address using PHP
* Md. Nazmul Basher
*/
/*ob_start(); // Turn on output buffering
system(‘ipconfig /all’); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean (erase) the output buffer
$findme = “Physical”;
$pmac = strpos($mycom, $findme); // Find the position of Physical text
$mac=substr($mycom,($pmac+36),17); // Get Physical Address
echo $mac;*/
// error_reporting(0);
// Panggil semua fungsi yang dibutuhkan (semuanya ada di folder config)
include "config/koneksi.php";
include "config/fungsi_indotgl.php";
include "config/class_paging.php";
include "config/fungsi_combobox.php";
include "config/library.php";
include "config/fungsi_seo.php";
include "config/fungsi_autolink.php";
include "config/fungsi_badword.php";
include "config/fungsi_kalender.php";
include "config/fungsi_rupiah.php";
include "config/fungsi_ip.php";
include "seo/seo.php";
include "view/default/template.php";
//echo "session_id : ".session_id()."<br> IP Address : ".get_client_ip();
?>