Skip to content

Instantly share code, notes, and snippets.

@w0zniak
Created December 12, 2013 22:51
Show Gist options
  • Save w0zniak/7936989 to your computer and use it in GitHub Desktop.
Save w0zniak/7936989 to your computer and use it in GitHub Desktop.
<?
class online{
public function __construct(){
$ip = $_SERVER['REMOTE_ADDR'];
$url = $_SERVER['REQUEST_URI'];
$now = date('Y-m-d h:i:s');
}
public function kullanici(){
if(isset($_SESSION['user'])) $kullanici = $_SESSION['user'];
else $kullanici = 'ziyaretci';
return $kullanici;
}
public function yaz(){
echo $this->kullanici();
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment