Jump to content

Recommended Posts

Hi.  I have a class called 'directory', defined as follows:

 


<?
// Directory Class
class directory{
var $id;
var $name;
var $path;
var $parentId;
var $accountId;

function directory(){
	// CONSTRUCTOR
	$this->id = "";
	$this->name = "";
	$this->path = "";
	$this->parentId = "";
	$this->accountId = "";
}

function getDirDetails($id){
	$query = mysql_query("SELECT * FROM directories WHERE id = '$id'");
	while ($row = mysql_fetch_assoc($query)){
		$this->name = $row['name'];
		$this->path = $row['path'];
		$this->parentId =  $row['parent'];
		$this->accountId =  $row['account_id'];
	}
}
}
?>

 

The class is included and an instance is made like so:

 


if (!class_exists("directory"))
include("classes/class.directory.php");

$directory = new directory;

 

HOWEVER....

 

When i go to use any var or method of the class, i get the following sorts of error messages:

 

Undefined property: Directory::$name

 

Can anyone help me figure out why it is not working????

 

Thanks

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.