Here is the compilation of Top 51 Frequently Asked MySQL Interview Questions And Answers,I hope you will like that and it will be useful in the interviews 1) What is the difference between sql and Mysql? Answer SQL or Structured Query Language is a programming language designed for managing data held in a Relational Database Management […]
Web development
Step by step guide to build local Apache PHP MySQL development environment on windows
A php developer would offcourse like to test the php file before deploying on the webserver.A local Apache PHP MySQL development environment on windows allows you to test your code as you develop your web application before publishing it to the web. This article will guide you through setting up a local Apache PHP MySQL development environment […]
Step-by-Step guide for Installing MySQL on Windows
The MySQL database server is one of the most popular open-source database servers commonly used in web application development.This document provides Step-by-Step guide for Installing MySQL on Windows. It covers the configuration details also with screen shot Starting the Download 1.Go to http://dev.mysql.com/downloads/installer/. 2.Click the Download button. 3. Scroll down to the MySQL database server & […]
Awesome 10 good php file manager
The good php File Manager allows you to manage your site through HTTP rather than an FTP tool or other third-party application. You can upload, create or delete files, organize files in folders and change file permissions. Folders and files may be displayed in a hierarchical tree based on their directory structure. Some php file […]
Best PHP editor for windows
Why the need for PHP editor for windows It is often necessary to edit HTML, CSS ,PHP and JavaScript files while creating web sites. That is reason usable ide for php web development should supply all those file types and provide full set of tools for effective development. In order to get success in developing […]
How to define constant in php
Constants in PHP (1) A constant is a name or an identifier for a simple value. It is defined using the define function and it does not start with $ sign Syntax define(name, value, case-insensitive) Parameters: name: Specifies the name of the constant value: Specifies the value of the constant case-insensitive: Specifies whether the constant […]