how we can use a database with php.
Answer Posted / shrikant
mysql> CREATE DATABASE first_test;
Query OK, 1 row affected (0.31 sec)
mysql> USE first_test;
Database changed
mysql> CREATE TABLE people (
id int UNIQUE NOT NULL,
first_name varchar(40),
surname varchar(50),
PRIMARY KEY(id)
);
Query OK, 0 rows affected (0.24 sec)
mysql> INSERT INTO people VALUES(1,'Ann','Brache');
Query OK, 1 row affected (0.09 sec)
mysql> INSERT INTO people VALUES(2,'Narcizo','Levy');
Query OK, 1 row affected (0.02 sec)
mysql> INSERT INTO people VALUES(3,'Tony','Crocker');
Query OK, 1 row affected (0.00 sec)
Your table should now look as follows:
mysql> SELECT * FROM people;
+----+------------+---------+
| id | first_name | surname |
+----+------------+---------+
| 1 | Ann | Brache |
| 2 | Narcizo | Levy |
| 3 | Tony | Crocker |
+----+------------+---------+
and for connecting
<?php
$username = "username";
$password = "password";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to create an index on a view?
How you trouble shoot when any job fails
What is policy based management (pbm)? : sql server database administration
What are the five characteristics of good data?
What does REVERT do in SQL Server 2005?
Can foreign key be duplicate?
What do you understand by recursive stored procedures?
What is b tree index?
How to count rows with the count(*) function in ms sql server?
How will you make an attribute not process? : sql server analysis services, ssas
Tell me what is the stuff and how does it differ from the replace function?
How to list all triggers in the database with sys.triggers in ms sql server?
What is the maximum size per database for sql server express?
What are the dmvs? : sql server database administration
What is tempdb in sql server?