Categories
PHP

While Loop In PHP

While Loop In PHP In this tutorial we will learn how to use While Loop In PHP. The meaning of while statement is to tells PHP to execute the nested statement’s repeatedly, till while expression evaluates to true. Value of the expression is checked each time at the beginning of the loop during the execution of the nested statement’s, […]

Categories
PHP

How To Create Dynamic Drop Down Menu In PHP

How To Create Dynamic Drop Down Menu In PHP In this tutorial i will teach you How To Create Dynamic Drop Down Menu In PHP.We are using MySQL as back-end. CSS: .bdy { margin: 0px auto; width:800px; font-family:Calibri; font-size:14px; padding-top:100px; } ul { font-family:Calibri; font-size:14px; margin: 0; padding: 0; list-style: none; } ul li { display: […]

Categories
PHP

How To Create Dynamic And Responsive Image Slider In PHP

How To Create Dynamic And Responsive Image Slider In PHP In this tutorial i will teach You How To Create Dynamic And Responsive Image Slider In PHP.We are using MySQL as back-end.For this we are using FlexSlider and CSS3.To start with it we have to create a table in MySQL.In this example we have one column […]

Categories
PHP

How To Display Data In PHP From MySql

How To Display Data In PHP From MySql In this tutorial i will teach you How To Display Data In PHP From MySql.This tutorial will be very helpful when you are thinking of fetching some data from mysql database to represent it through your php code. CODE: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html […]