Replace A Character Of String Using PHP With Other Character

By Faruque Ahamed Mollick

In this post, I am going to discuss a thing which may be interesting to you. Suppose you have a text block which represents as a string in PHP and you want to replace a particular.... Read More

Disable HTML Input Field And Make It Un-clickable

By Faruque Ahamed Mollick

Here in this post, I am going to tell you how to disable a form field in an HTML form easily. It is very easy and simple task to disable any input field of an HTML form. There is a.... Read More

The Right Way Of Adding Custom CSS On WordPress

By Faruque Ahamed Mollick

Many time it may be needed to change the CSS coding of a WordPress theme. Suppose, you have installed a WordPress theme and you want to modify the CSS a little bit by adding extra .... Read More

Simple Color Picker Input Field In HTML Form

By Faruque Ahamed Mollick

In this simple HTML tutorial, I am going to tell you how to create an HTML form input field where the user can choose a color. To create a color picker for input field you can use .... Read More

How To Redirect URL Using PHP header redirect?

By Faruque Ahamed Mollick

Redirecting URL in PHP is very useful. In many purposes, developers need to redirect a page to a URL. Redirecting page into a specific URL is very easy and simple task. You just ne.... Read More

PHP md5() function and code snippets of md5()

By Faruque Ahamed Mollick

md5() is one of the inbuilt function of PHP that is available from PHP 4. The md5() function can easily calculate the MD5 hash of a string. This PHP function uses the RSA Data Se.... Read More

Simple PHP Code To Check If URL Parameter Is Exist Or Not

By Faruque Ahamed Mollick

In web development, many times it is needed to take the value of URL parameter to process. Below is given an example of URL with value in parameter: https://domain.come/index.php?c.... Read More

Simple PHP code for file uploading process

By Faruque Ahamed Mollick

Using PHP it is very easy to making a file uploading system on the server. Today in this post, I am going to show you how to upload file on the server and keep that file in a speci.... Read More

Related Posts