Categories
PHP

How To Insert Data Into MySql In PHP

How To Insert Data Into MySql In PHP In this tutorial i will teach you How To Insert Data Into MySql In PHP.This tutorial will be very helpful when you are thinking of insert some data into a database table through your PHP code.Here i am using a form with two fields (Employee_firstname,Employee_lastname).Method to insert the […]

Categories
PHP

How To Create Table In MySql Using PHP

How To Create Table In MySql Using PHP In this tutorial i will let you know How To Create Table In MySql Using PHP.This tutorial will be very helpful when you are thinking of create a database table 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 xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" […]

Categories
PHP

How To Create Database In MySql Using PHP

How To Create Database In MySql Using PHP In this tutorial i will teach you How To Create Database In MySql Using PHP.This tutorial will be very helpful when you are thinking of create a database 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 xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" […]

Categories
Freebie How To Article Website Design

How To Create A Responsive Image Slider

How To Create A Responsive Image Slider In this tutorial i will teach you How To Create A Responsive Image Slider.My Previous post was about How To Create Responsive Menu.Here we are using Flexslider. HTML: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>How To Create A Responsive Image Slider</title> <link href="StyleSheet.css" rel="stylesheet" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script> <script src="js/jquery.flexslider-min.js"></script> <script> $(document).ready(function […]