home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 August
/
PCWorld_2001-08_cd.bin
/
Komunikace
/
phptriad
/
phptriadsetup2-11.exe
/
htdocs
/
test.php3
< prev
Wrap
Text File
|
2000-12-30
|
662b
|
18 lines
<?php
page_open(array("sess" => "Example_Session"));
?>
<html>
<head><title>PHP3 test page</title></head>
<body bgcolor="#ffffff">
<a href="<?php $sess->purl("index.php3")?>">Load</a> the simple page again.<br>
<a href="<?php $sess->purl("showoff.php3")?>">Load</a> the complex example again (login as phpgeek, password test).<br>
<a href="<?php $sess->purl("defauth.php3")?>">Load</a> the default auth example.<br>
<a href="<?php $sess->purl("logout.php3") ?>">Logout</a> and delete your authentication information.<br>
<?php
page_close();
phpinfo()
?>
</body>
</html>
<!-- $Id: test.php3,v 1.5 1999/04/30 19:51:29 kk Exp $ -->