This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
session_start(); | |
function build_url($args = array()){ | |
$defaults = array( | |
'scheme' => 'http', | |
'host' => '', | |
'path' => '', | |
'query' => '', | |
'user' => '', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include 'linklist.class.php'; | |
class obJect { | |
public $nameOfOb; | |
public $typeOfOb; | |
function __construct($nameOfOb,$typeOfOb) | |
{ |