jim002 Posted December 3, 2009 Share Posted December 3, 2009 if($row->password != $pass) { in the code above..what is the "->" what kind of operation is that? thnks Link to comment https://forums.phpfreaks.com/topic/183869-noob-question/ Share on other sites More sharing options...
premiso Posted December 3, 2009 Share Posted December 3, 2009 $row is an object, the -> is calling a function/property of the object password. Basically it says, access password inside of the object "row". I am not sure how to better explain it, but that is the gist of it. Link to comment https://forums.phpfreaks.com/topic/183869-noob-question/#findComment-970629 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.