jQuey UI Accordion With Demo Code

By Faruque Ahamed Mollick

jQuery UI is a jQuery based library which can be used as to create user interface interactions, effects and much more easily. You just need to write less code and you will get mor.... Read More

Use of PHP __construct function (PHP Constructor)

By Faruque Ahamed Mollick

Like many other programming languages, we can also define and use the constructor. The constructor in PHP is so useful and used in both small and large projects. Previously, in PHP.... Read More

AJAX search from MySQL database in PHP example

By Faruque Ahamed Mollick

AJAX (Asynchronous JavaScript And XML) is very popular on modern websites. On Google, Facebook, YouTube you will see a huge use of AJAX. It is not a programming language, but a .... Read More

Set cookie and retrieve it on web page in PHP

By Faruque Ahamed Mollick

A cookie in PHP used to store the small amount of data on client side. The cookie actually a small text file that stores small data, nearly about 4KB. Cookies are generally used t.... Read More

Create PHP function with optional parameter or argument

By Faruque Ahamed Mollick

I have already discussed PHP function and told you how to create a function in this article – What is a function in PHP and why we use it? There I have also shown you how t.... Read More

Get the current page URL in PHP

By Faruque Ahamed Mollick

Here in this tutorial, I am going to show you another code snippet which will show you how to get the current page URL using PHP. Well, there is a super global variable available i.... Read More

Why we use PHP __autoload() magic function?

By Faruque Ahamed Mollick

__autoload in PHP is called a magic function. This function is so useful. But many of new PHP programmer may not know what this function actually does and when they should use this.... Read More

How to display PHP source code on the web page?

By Faruque Ahamed Mollick

Whenever you open a PHP file with your server path, it runs the PHP code. It will never display you the PHP source code. Whenever you put some PHP code inside that file, it will ru.... Read More

Related Posts