Wednesday, 21 September 2016

What does this symbol mean in PHP



What does this symbol mean in PHP ?



Example usage:



Manage Role: > (getRoleNameFromID($_GET['roleID']); ?>)




Answer



It's functionally the same as getRoleNameFromID($_GET['roleID']); ?>


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...