Disable Directory Browsing with htaccess

When we create a new directory for our website without index.html then visitors get directory listing of all files of that folder.  Have ever noticed on any website that directory listing displaying instead of html file. In absence of index page in a folder , by default directory listing is shown. Directory browsing is very … Read more

What is stdClass in PHP

What is stdClass in PHP

Stdclass is a generic empty class which is used to type case other type value to object. we can create anonymous PHP class. Using this feature we can create a new object with its own properties. In simple words: Stdclass is an alternative to associative array. To use this we don’t need to write a … Read more

Use Smart PHP Frameworks To Get Robust Web Applications

A number of businesses and developers looks for a highly organized and modern framework when it comes to developing a website. It is not easy to build a web or mobile application, using the PHP framework can solve this problem. This framework has become the first choice of the Web developers and is currently powering … Read more

How To Get Selected Text and Value of DropDownList Using JavaScript and jQuery

In this tutorial,we will learn how to get selected text and value of dropdown list by onchange event using jQuery and JavaScript. When user select dropdown text , then text and value is retrieved with jquery onchange event. A simple function is created to get dropdown text and value using JavaScript. So. let us see … Read more

Switch Grid and List View Using jQuery

In this tutorial we are going to see how to switch Grid and List view using jquery. This example will help you to understand easily how to create grid/list view in html using jquery. This concept is generally used in e-commerce website where you can see product in Grid and list view both by single … Read more

Show and Hide Password Field with jQuery and JavaScript

In this tutorial, we will see how to show and hide password field with jQuery and JavaScript. This tutorial demonstrates the functionality of how to toggle password input field visibility. You have seen in many sites, password visibility option means you can see password while you are writing.  This example will help you to understand … Read more