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