First, remember that if someone gets enough access to read your code files, he will probably get your decryption routine and key - your encryption will only protect you against attackers that get access to the database and nothing else.
If you want to search for partial mail addresses and phone numbers using MySQL, you cannot use encryption - if the data is encrypted in a way MySQL can't read it, then, well, MySQL can't read and thus can't search it.
However, you could do the following:
- Hash the data and store the hash in column "email_hash"
- Encrypt the data and store it in a second column "email_crypt"
If you want to look for the row with e-mail X, you select where email_hash = hash(X). If you want to know the e-mail address of a row, you select email_crypt and decrypt it.
However, this would allow attackers to test whether a certain e-mail is in your database (i.e. they could bruteforce the hashes). To prevent this, you should use a HMAC method for hashing and keep the key secret.
You could now think "Hey, I can skip the hash and do lookups by encrypting the plain e-mail address and looking for a row containing the same encrypted string". No, you cannot do that. If you encrypt data, you use a random "IV" which you store together with the data, to ensure that if you encrypt the same data twice, you get different results. You could set the IV to a constant value, but that is a non-standard way of using cryptography and could cause security issues, so don't do that. Also, use a proper chaining mode, e.g. AES-CBC.