Home » Web development » Page 3

Web development

Top 51 Frequently Asked MySQL Interview Questions And Answers

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 …

Top 51 Frequently Asked MySQL Interview Questions And Answers Read More »

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 to build local Apache PHP MySQL development environment on windows Read More »

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 & …

Step-by-Step guide for Installing MySQL on Windows Read More »

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 …

How to define constant in php Read More »

Scroll to Top