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 […]

Categories
PHP

How To Make Database Connection In PHP -MySql

How To Make Database Connection In PHP -MySql In this tutorial i will teach you How To Make Database Connection In PHP -MySql.I am using WAMP SERVER and Notepad++ as editor. 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> <style type="text/css"> body { margin:0px auto; width:980px; font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; } […]