View Single Post
  #2  
Old 08-15-2006, 02:23 PM
zenith zenith is offline
OSP Starters
 
Join Date: Apr 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
zenith is on a distinguished road
Default

One reason I can see is that your class name and function name is same i.e register.. try to change the function name and then work over it,

and btw if you are using register function as constructor then you are doing wrong, in php you define constructor as __contruct()

OR first create the object and then call the register function like


PHP Code:
$reg->register($username,$password);

Hope that helps -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - unable to create class
View Single Post
  #2  
Old 08-15-2006, 02:23 PM
zenith zenith is offline
OSP Starters
 
Join Date: Apr 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
zenith is on a distinguished road
Default

One reason I can see is that your class name and function name is same i.e register.. try to change the function name and then work over it,

and btw if you are using register function as constructor then you are doing wrong, in php you define constructor as __contruct()

OR first create the object and then call the register function like


PHP Code:
$reg->register($username,$password);

Hope that helps -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote