PHP Encrypt and Decrypt Code

   18/07/2014
104480 , 0
This PHP functions will help you to encrypt and decrypt your string to the complex code that no one can understand the original string.

For the security reason, this function should be used to encode your secret data to the unreadable string. However, we might know the MD5 or SHA which is the popular PHP built-in encrypting function and cannot be decrypted in the previous time. Now, MD5 is already cracked down with some online website or library that can do that job well.

Now, we introduce you the hand-made functions that is reliable and secured enough to work with your project. So, now let's see how it works.

PHP Message Smiley Emotion

   26/07/2014
104435 , 0

It is very convenient if we can show our feeling emotionally with our text message to someone we wish to understand our feeling. We might experienced with some social networkslike Facebook where smiley message is very convenient to express the feeling.

This function will display those smiley symbols by converting the smiley charactors to the smiley image. So, smiley image file is needed for working with this function. You may have your own smiley image design or your favorite one by just customizing the smiley images used in the function. The below script and instruction will show how the function works.

Read Text File using PHP

   25/08/2022
103898 , 0

Although we have database to work with data, with some circumstances we still need to work directly with files, especially text files. Here in this tutorial, you will know how to read a text file using PHP with a few different functions including fgets()file(), and file_get_contents().

PHP and Ajax Online User for Admin System

   31/08/2014
102961 , 0

Admin Panel or Back-end site is used to manage and monitor the client or front-end side of the web system. Online user system is very useful to monitor the users to know who is being online, what page they are in, how long have they been online, and so on. With this function, the administrators will be able to monitor the activities of their users by just check the use online status. This feature is very important and necessary for advanced web system like Online Trading System, Online Market System, Online Game System, and other online systems. This feature is generally used with Risk Management System of the CRM of the advanced online web system to monitor the users’ activities.

Auto Suggestion List for Searching Input Box

   22/08/2014
102446 , 0

The common and necessary function that we usually see on almost websites is about searching suggestion. Auto suggestion is very useful and convenient for the users when they are trying to find something in a website by just typing some keywords in the searching box normally placed right in the website header block. Then, the suggested keywords are listed down as the drop down list right below the searching box helping users to use the right keyword to get the desired result. There are some options that we can show the drop down data list by showing the recent keywords, popular keywords, recommended keywords, sorted keywords, etc. Actually, there are many libraries or free script that can be implemented to our website. However, having our own functions is the most preferable way of being the challenging web developer. Therefore, in this tutorial, we show the auto suggested data by recent keywords (order by datetime).