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 Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/183869-noob-question/#findComment-970629 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.