Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Class Properties Error

Status
Not open for further replies.

dagger2002

Programmer
Nov 23, 2004
172
US
Hey all

This is my first class that I have done, with a little help I got it built. But when I go to get information from it, which i am not sure that I am doing it right, I get the following Error
Properties Error

the class is named: chart here are its properties:
Code:
        private $chart_id;
        private $chart_name;
        private $chart_swf;
        private $chart_graph_props;
        private $chart_category_list_props;
	private $chart_category_props;
        private $chart_dataset_props;  
        private $chart_set_props;

Here is what I am trying to do
Code:
<?php

	require('dasd_class.php');

	$par = new chart(1 , 1);
	
	echo $par->chart.chart_name;

?>
 
that doesn't look much like a php error to me.

could we see more of your code to try and replicate the issue?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top