What is a function in PHP and why we use it?

By Faruque Ahamed Mollick

A function in PHP is a self-contained block of code that use to performs a specific task in the program. In another word, we can say that PHP function is a piece of code that can .... Read More

Protect website from SQL Injection in PHP

By Faruque Ahamed Mollick

From the name SQL Injection, many of you can guess that someone injects SQL into your PHP application. Well, obviously it is not good to let a user inject SQL code inside your web .... Read More

Disable direct access to the PHP include file

By Faruque Ahamed Mollick

In many times it may be needed to include one or more PHP file to other PHP files. We do it so that we don’t have to write the same code again. But what happened if you acces.... Read More

How to get the file size in PHP?

By Faruque Ahamed Mollick

To get the size of a file in PHP you can use filesize function of PHP. The filesize function in PHP is already inbuilt function from PHP 4. Below is the syntax of this function: .... Read More

How to get value from input box in JavaScript?

By Faruque Ahamed Mollick

In this post, I am going to provide you a useful JavaScript code snippet. Here I am going to tell you how you can take the value of an input box. To do it take an input text box fo.... Read More

Convert Comma Separated String into Array in PHP

By Faruque Ahamed Mollick

Suppose you have a comma separated string which you want to convert into an array for any purpose. How will you do that? Here in this tutorial, I am going to give you the simple co.... Read More

Retrieve the width of div element in JavaScript

By Faruque Ahamed Mollick

In many situations in web design or development, you may need to get the width of div element for some reasons. Here in this post, I am just going to show you simple code snippet .... Read More

Convert seconds to HH-MM-SS format in JavaScript

By Faruque Ahamed Mollick

In this tutorial, I am going to show you how to convert seconds to Hours Minutes Seconds (HH-MM-SS) format in JavaScript. Play/Pause Button For HTML5 Video Using JavaScript You ma.... Read More