Tag Archives: MySQL

Oracle announced it finalized its acquisition of Sun

This combination transforms the IT industry. With the addition of servers, storage, SPARC processors, the Solaris operating system, Java, and the MySQL database to Oracle’s portfolio of database, middleware, and business applications.

Save MySQL from Oracle

Urgently need help save MySQL from Oracle’s clutches. Without your immediate help Oracle might get to own MySQL any day now.

Retrieve Data From a MySQL Database

Using PHP you can run a MySQL SELECT query to fetch the data out of the database.
Here is an example of one of the easiest ways to fetch data, this example uses a table called contact which has four columns, name, subject, address and message
<?php include ‘config.php’;?>
<?php
$query = “SELECT name, subject, address, message FROM [...]