Hi,
glad you didn't give up completely.
$strWhere is just a variable name. probably it holds a part of the query that is used to get the records from the database.
. is the concatenation operator in php. it appends to what the variable contained before.
% and like are not php, this is sql (structured query language) which is used to communicate with the database. % is a wildcard (like * in many other situations) which needs to be used with the keyword like.
Hope I was able to explain it well...