Files
EasySoft-ZenTaoPMS/module/misc/ext/control/getsid.php
2011-03-08 14:08:44 +00:00

14 lines
246 B
PHP

<?php
class misc extends control
{
public function getsid()
{
$this->view->header->title = 'getsid';
$this->view->sid = session_id();
$this->view->test = $this->misc->test();
$this->display();
}
}
?>