| Server IP : 10.10.92.66 / Your IP : 104.23.243.84 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/phppgadmin/ |
Upload File : |
<?php
/**
* Intro screen
*
* $Id: intro.php,v 1.19 2007/07/12 19:26:22 xzilla Exp $
*/
// Include application functions (no db conn)
$_no_db_connection = true;
include_once('./libraries/lib.inc.php');
include_once('./themes/themes.php');
$misc->printHeader();
$misc->printBody();
$misc->printTrail('root');
$misc->printTabs('root','intro');
?>
<h1><?php echo "$appName $appVersion (PHP ". phpversion() .')' ?></h1>
<form method="get" action="intro.php">
<table>
<tr class="data1">
<th class="data"><?php echo $lang['strlanguage'] ?></th>
<td>
<select name="language" onchange="this.form.submit()">
<?php
$language = isset($_SESSION['webdbLanguage']) ? $_SESSION['webdbLanguage'] : 'english';
foreach ($appLangFiles as $k => $v) {
echo "\t<option value=\"{$k}\"",
($k == $language) ? ' selected="selected"' : '',
">{$v}</option>\n";
}
?>
</select>
</td>
</tr>
<tr class="data2">
<th class="data"><?php echo $lang['strtheme'] ?></th>
<td>
<select name="theme" onchange="this.form.submit()">
<?php
foreach ($appThemes as $k => $v) {
echo "\t<option value=\"{$k}\"",
($k == $conf['theme']) ? ' selected="selected"' : '',
">{$v}</option>\n";
}
?>
</select>
</td>
</tr>
</table>
<noscript><p><input type="submit" value="<?php echo $lang['stralter'] ?>" /></p></noscript>
</form>
<p><?php echo $lang['strintro'] ?></p>
<ul class="intro">
<li><a href="http://phppgadmin.sourceforge.net/"><?php echo $lang['strppahome'] ?></a></li>
<li><a href="<?php echo $lang['strpgsqlhome_url'] ?>"><?php echo $lang['strpgsqlhome'] ?></a></li>
<li><a href="http://sourceforge.net/tracker/?group_id=37132&atid=418980"><?php echo $lang['strreportbug'] ?></a></li>
<li><a href="<?php echo $lang['strviewfaq_url'] ?>"><?php echo $lang['strviewfaq'] ?></a></li>
</ul>
<?php
if (isset($_GET['language'])) $_reload_browser = true;
$misc->printFooter();
?>