He means you shouldn't use the name for the ID. I.e. this example:
Person id #1 = Mordecai
Person id #2 = George Bush
Person id #3 = Pacman
if ((person id #3) == "Pacman") { }
this equals: if (3 == "Pacman"). Obviously, 3 does not equal Pacman. Therefore, you must use either:
if ("Pacman" == "Pacman")
or
if ((person id #3) == (person id #3))
Hope this helps, despite being a very confusing example that means almost nothing.
In simple terms: stick with either an ID or a name, don't mix and match, since they're obviously not the same when measuring equality.