Old school Swatch Watches
Eaglenet logo
24/7 updates on happenings in africa
*LORDEAGLE 2015-07-05 04:28
img
What is a database?
Adatabaseis a structured collection of data. Here are some typical examples of databases:
*.An online store databasethat stores products, customer details and orders
*.A database for a web forumthat stores members, forums, topics and posts
*.A database for a blog system, such as WordPress, that stores users, blog posts, categories, tags, and comments
The software that manages databases is known as adatabase management system, orDBMS. MySQL is an example of a DBMS. Rather confusingly, DBMSs are often called databases too. Strictly speaking though, the database is the data itself, while the DBMS is the software that works with the database.
There are many different ways to organize data in a database, known as database models. One of the most popular is the relational model, which is what MySQL uses (along with PostgreSQL, Oracle, Microsoft SQL Server, and other common systems). Consequently, MySQL is known as arelational database management system, or RDBMS.
The following diagram shows how a database, the DBMS, and your website's code interact with each other.
    ·
  • rated(0)
*LORDEAGLE 2015-07-05 04:26
A database is an essential part of most websites and blogs, but setting up and using a database can be a daunting task for the beginner web developer.
In this tutorial you'll learn — in simple terms — how to install, set up, and use a MySQL database on your computer. This will give you a good grounding in MySQL that you'll find useful when you start developing database-driven websites using PHP, Ruby, or your language of choice.
You'll explore the following areas in this tutorial:
*.The concept of a database, and why databases are useful
*.The advantages of using MySQLto manage your databases
*.How to install MySQLon your computer
*.Using the MySQL Monitor programto send commands to your MySQL server
*.How tocreate a database and table
*.SQL (Structured Query Language), and what it's used for
*.Adding recordsto a table, andretrieving recordsfrom a table
Ready to start exploring MySQL? Let's go!
    ·
  • rated(0)
*LORDEAGLE said to AH-SID 0n 2015-07-05 04:25
Never used MySQL before? Start here! This tutorial walks you through the very basics of MySQL and SQL databases. Learn how to install MySQL, how to issue commands, and how to create and use databases.
    ·
  • rated(0)
*AH-SID 2015-07-05 00:18
I want to make blog in a hosting which support PHP. But I don't want to make blog by install blog CMS. So, please tell to me to know the basic in manage database PHP MySQL.

How to make Database Table, Insert - Select - Edit - Delete some data of database and another basic in manage database PHP MySQL.
    ·
  • rated(0)
Oniline