9 lines
174 B
PHP
9 lines
174 B
PHP
<?php
|
|
|
|
$opt['rootpath'] = '../';
|
|
require($opt['rootpath'] . 'lib2/web.inc.php');
|
|
|
|
header('Content-type: text/html; charset=utf-8');
|
|
echo sql_value("SELECT NOW()","");
|
|
|
|
?>
|