Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Eugene Panin  >  Custom URL  >  index.php  >  Download  
File: index.php
Role: ???
Content type: text/plain
Description: Usage example
Class: Custom URL
Author: By
Last change:
Date: 2001-04-20 10:52
Size: 362 bytes
 

Contents

Class file image Download
<html>
<body>
<?
error_reporting(63);
require 'urllib.php';
 
$url = new custUrl($PHP_SELF);
 
$url->setKey('key1','the word in ruissian: русский');
$url->setKey('key2',2);
 
#$url->dropKey('key1');
#echo $ulr->asString()."<br>";
 
echo $url->asHtml('test')."<br>";
echo "Key 'key2' is equal to ".$url->getKey('key2')."<br>";
?>
</body>
</html>