Any way to use php to count the characters in a blob field? Like, if I wanted to know how many words were stored in it?
get the blob from the db (SELECT blobField FROM db WHERE id=1 or so), the get the result and use strlen or sizeof to get the bytecount.