How to generate a checksum (hash signature) to encrypt or verify if two copies of a string or file are identical in all respects.
Category: PHP
PHP is a scripting language that’s usually embedded or combined with HTML and has many excellent libraries that provide fast, customized access to DBMSs.
Search and Replace Unicode Accents
Many foreign languages, such as Turkish, Spanish, and most other European languages have accented letters. In this tutorial, we’ll replace the accented characters with their relevant characters, for example, é with e.
Truncate text to a specific length
In this code snippet, we’ll cut long strings short without truncating the text midword.
Cleanup Text by Removing Extra Spaces
In this tutorial, we’ll remove extra spaces between words, and remove spaces from the beginning and end of a string.
Validating Email Addresses
How to check whether a string contains a valid email address or not.
How to break long paragraphs
The text on a screen is harder to read than in a book but short paragraphs keep the content readable. In this tutorial, I’ll explain how to convert or split a long paragraph into short paragraphs with the help of PHP’s built-in functions
Sorting with Foreign Languages
How to sort multibyte string properly with PHP’s sort() function.
Emailing Form Data
Sending emails via PHP mail() function.
Saving Form Data into a File
Learn how to serialize (and unserialize) the form data in PHP for storing it in a file.
Validating Selection Lists
How to create a dropdown list from an array, validate selection lists using the in_array() function and validate multiple lists with array_diff() function.