Jump to content

unexpected T_PAAMAYIM_NEKUDOTAYIM


doddsey_65

Recommended Posts

im getting the double colon error on this line:

 

if(logged_in($user::$data['u_uid']))

 

$user is defined as new sessionsClass and $data is a public static variable which holds all the user information. So why am i getting this error? it works fine locally.

 

Link to comment
https://forums.phpfreaks.com/topic/241948-unexpected-t_paamayim_nekudotayim/
Share on other sites

it works fine locally.

 

I'm going to guess that "locally" you're using PHP 5.3 and "not locally" you're using PHP 5.2 (or lower).  The former allows you to use a variable as you have, the latter does not. In short, prior to PHP 5.3.0 you must hard code the class name there.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.