Insert Data Using Php Mysql

For this, you are going to need to login to a MySQL server administration, such as ‘phpmyadmin‘. Contact your server host for more details. Copy and paste the follow MySQL code into your query panel. This show generate a database table called ‘my_table‘. CREATE TABLE `my_table` ( `id` int(6) NOT NULL auto_increment, `name` varchar(255) NOT NULL default ”, `email` varchar(255) NOT NULL...
Share:

Display Mysql data using Php Tutorial

Our First tutorial based on Display data from mysql table. Using PHP you can run a MySQL SELECT query to fetch the data out of the database. You have several options in fetching information from MySQL. PHP provide several functions for this. The first one is mysql_fetch_array()which fetch a result row...
Share: