Hi! I want to search string having value like "CMS" in array $row, below code is searching for exact "CMS".
if (mysql_num_rows($sql_result)>0)
{
while ($row = mysql_fetch_assoc($sql_result))
{ $counter++;
if (in_array("CMS", $row))
{ $cms++; }
}
}
I'll be grateful if any one can guide me to how to search string for value LIKE "CMS" in array $row.