home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 August
/
PCWorld_2001-08_cd.bin
/
Komunikace
/
phptriad
/
phptriadsetup2-11.exe
/
htdocs
/
phpMyAdmin
/
index.php
< prev
next >
Wrap
PHP Script
|
2000-08-20
|
419b
|
21 lines
<?php
// Process config file to determine default server (if any)
require('lib.inc.php');
?>
<html>
<head>
<title>phpMyAdmin</title>
</head>
<frameset cols="150,*" rows="*" border="0" frameborder="0">
<frame src="left.php?server=<?php echo $server;?>" name="nav">
<frame src="main.php?server=<?php echo $server;?>" name="phpmain">
</frameset>
<noframes>
<body bgcolor="#FFFFFF">
</body>
</noframes>
</html>