its really helpful though. another example can be this:
$U = THAT_FUNCTION();
//U = everything
if( $U['messages'] ){
//if U msgs has a value
$MS = explode( ',', $U['messages'] );
//make it an array
$PM = THAT_FUNCTION('msgs', 'id', $MS[0]);
//get the first array (the msg id)
if( !$PM['read'] ){
//if its 'read' is 0 or whatever
echo "You have unread messages";
//tell the user, they have unread whatever
}
}
note this is only a example. and this is assuming, the messages in the user database looks like this "14,36,47" and each of those numbers, are the message ID in a messages database. which is why the example explode()'d them. and then used the function to check the message in the database. im bad at explaining, but if you look at the example, it should make sense.