PHP is a loosely typed language, i.e. you have to write less and can do/code whatever you want (structured programming) 🙂 PHP is used for quick web development, It’s library is very rich. We can’t say that it is a good point or poor one, that PHP doesn’t required initialization of variables,but it is a bad…
Have your mozilla firefox homepage hijacked and showing undesired homepage? don’t worry !! Just follow some simple steps to get rid by this. 1. Close Mozilla Firefox. 2. Uninstall the package from control panel > add remove program Package with the name whose default page has set on your Firefox browser …
Basically there are three major types of errors in PHP Notices,Warnings and Fatal errors Notices Notices are small, non-critical errors that PHP encounters while executing a script.By default, such errors are not displayed to the user at all and these will not cause script termination. Condition like Accessing a variable that not define. …
HTML5 is the latest version of HTML and XHTML or simply it is a new standard for HTML, XHTML, and the HTML DOM. The HTML standard defines a single language that can be written in HTML and XML. It attempts to solve issues found in previous version of HTML and addresses the needs of Web…
OOPS Concept: Introducing Classes in php You all know that Classes are the most important part of OOP. A class is simply a template or blueprint that contains the various attributes and functions of an object of the class. Class is mainly composed of three things : name, attributes, and operations.We can also…
Delete all duplicate rows except for one in MySql having no primary key. Someone asked me to delete all rows from a table except one entry with a single query. This is not so easy for me :), Anyway after work and research I have found the solution, I am sharing with you How you can…