Articles: 843 | Categories: 148   
   
   
 
 
 
 
 
Php >> Articles & Tutorials >> Database
How to Handle Relationships By: Admin

This tutorial is intended for those developers who come across the situation where they need to cater for what is known as a 'many-to-man...29-Mar-2010

Accessing MySQL Database Data By: Admin

Ok, we now have our data in the database, so how do we actually put this data to use? Ok, we now have our data in the database (if you do...29-Mar-2010

PHP / MySQL Tutorial By: Admin

MySQL is the most popular open source database server in existence. On top of that, it is very commonly used in conjunction with PHP scri...29-Mar-2010

MySQL Admin By: Admin

This lesson covers the different options you have available to you for administering your MySQL service after it is successfully installe...29-Mar-2010

MySQL Database Backups By: Admin

If you're storing anything in MySQL databases that you do not want to lose, chances are you should be doing weekly or even daily backups....29-Mar-2010

Sending queries to mySQL By: Admin

PHP send quesries to mySQL using mysql_query function. mysql_query function returns boolean (True or False) value which your quesry does ...29-Mar-2010

Running Some Queries By: Admin

Ours is not to reason why, ours is just to do and query. Consequently we'll continue with queries without further ado! For our MySQL data...29-Mar-2010

Using MySQL with PHP By: Admin

This chapter describes: How to configure PHP with a MySQL server. What are the basic functions to use a MySQL server and a test script wi...29-Mar-2010

Putting PHP & MySQL To Work By: Admin

In this tutorial, a link at the top of the Web page brings visitors to the login page, where they can sign in or create a new account. To...29-Mar-2010

Script Web Databases Quickly By: Admin

You'll learn how to install and configure PHP for use with the Apache Web server on UNIX or the Microsoft Internet Information Server on ...29-Mar-2010

Connecting to a Database By: Admin

You need to have a connection to mysql before you can send and recieve data. This first code will define the DB variables, so you will ne...29-Mar-2010

Saving & Downloading By: Admin

This article is aimed at answering one of the most asked questions on the PHP mailing list and discussion forums alike: How to store bina...29-Mar-2010

Get Size of a MySQL Database By: Admin

This simple tutorial will show you how to get the size of a MySQL database using PHP in just a few simple steps. First of you'll need my ...29-Mar-2010

Creating OO MySQL Abstraction By: Admin

In this tutorial you will learn how to create an object oriented database abstraction class for MySQL databases. Besides the basic functi...29-Mar-2010

Simple DB Management System By: Admin

In this tutorial, you will the steps that ar needed to not only learn but create a simple but effective database management system.29-Mar-2010

Create A Database On The Fly By: Admin

Need to have databases created with a back end application?This tutorial shows the database that was created from this online application...29-Mar-2010

PHP/MySQL Select Data and Split By: Admin

This tutorial is going to show you how to SELECT data from a MySQL database, split it on multiple pages and display it using page numbers...29-Mar-2010

PHP MYSQL Functions By: Admin
The MySQL functions allows you to access MySQL database servers. For the MySQL functions to be available, you must compile PHP with MySQL supp...29-Mar-2010
Displaying MySQL Table Structures By: Admin

You can get information about tables using SHOW TABLE STATUS query. This query gives you a detailed info about all tables in your databas...29-Mar-2010

What Are Databases? By: Admin

Databases are programs that are built to store and manage information. You can think of a database as a virtual filing cabinet … w...29-Mar-2010

Stored Procedure With mySQL By: Admin

MySQL Stored Procedures and PHP can prove to be a great combination! This article explains about MySQL Stored Procedures in detail includ...29-Mar-2010

Web Database Access By: Admin

In this tutorial, we will explore a straightforward solution that is used to access web databases using desktop applications, and that yo...29-Mar-2010

PHP Snurk By: Admin

When you run a database-driven website, it makes sense to generate pages on the fly. PHP, MySQL, and Apache let you do just that. But the...29-Mar-2010

Working with checkboxes By: Admin

Over in the php help forum, the question of how to deal with checkboxes arises pretty often. Usually, people want to be able to select wh...29-Mar-2010

PHP Basic Database Handling By: Admin

"Handling a database with PHP" can be a bit misleading. PHP is not the one responsible for doing anything to your database. All...29-Mar-2010

Working with a Database By: Admin

The [Easy as Pie] series focuses on tasks that most people consider too challenging and presents it in a way that is easy (as pie!) to un...29-Mar-2010

Next-Previous Links By: Admin

If you have a myriad of data on your database and want to display it in a nice orderly manner, then you might want to display only part o...29-Mar-2010

Database design fundamentals By: Admin

This is a mini-guide with hot tutorials to learn, step-by-step, how to design a database from relationships-entities model to final imple...29-Mar-2010

MySQL Databases (PART 1) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 2) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 3) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 4) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 5) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 6) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 7) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 8) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

MySQL Databases (PART 9) By: Admin

Welcome to my set of tutorials on MySQL. While there are loads of tutorials on MySQL (usually in combination with a scripting language) o...29-Mar-2010

Build a Query Processor Class By: Admin

In this article you will learn how to use some useful PHP networking functions that will help you perform a variety of common networking ...29-Mar-2010

Export Database By: Admin

The script below reads the schema from a MySQL database and outputs XML that describes the schema. At first we connect to a MySQL databas...29-Mar-2010

Install Firebird/Interbase By: Admin

This simple tutorial assumes you already have a working PHP installation. There's plenty of guides on how to set up PHP, here I'm only sh...29-Mar-2010

PHP database problems By: Admin

You can create database design, database access, and the PHP business logic code that sits on top of it in any number of ways, and you of...29-Mar-2010

Unit tests By: Admin

There are many unit test frameworks in the PHP world, mostly based on Junit. We didn't develop another one for symfony, but instead we in...29-Mar-2010

Web Database Access By: Admin

There may be growing interest in moving computer applications from the desktop to the Web. But desktop applications are still a huge mark...29-Mar-2010

Script Web Databases By: Admin

Find out how to script in PHP, an open-source embedded scripting language for HTML. You'll learn how to install and configure PHP for use...29-Mar-2010

Record locking in Web apps By: Admin

In this article we describe how to implement record locking in web applications. Because of the stateless nature of HTTP, you cannot know...29-Mar-2010

Storing Images in a Database By: Admin

This tutorial teaches you how to upload images into a MySQL database using PHP. Even though it sounds complicated, it is fairly simple an...29-Mar-2010

PHP Database By: Admin

With an ODBC connection, you can connect to any database, on any computer in your network, as long as an ODBC connection is available. He...30-Mar-2010

Flexible Database Driven Menu By: Admin

In this tutorial we'll see how to create a fully database driven menu. Our menu will work fine also if we decide to insert some links lat...30-Mar-2010

Flat File Databases By: Admin

PHP is a very powerful language, even without the use of a database, but you can only go so far without the need to store and retrieve da...30-Mar-2010

Restoring MySQL Databases By: Admin

If you happen to have data stored in a MySQL database, it is good for you to learn how to backup and restore the database. While MySQL is...30-Mar-2010

Databases and SQL By: Admin

As if PHP wasn't enough, now you find out you have to be able to work with databases as well! Well, never fear, Timothy has a database pr...30-Mar-2010

Managing Tables By: Admin

A collection of 18 tips on managing tables and data rows with PHP scripts. Clear explanations and tutorial exercises are provided on crea...30-Mar-2010

Build a PHP Link Scraper By: Admin

We're going to build a robot that scrapes links from web pages and dumps them in a database. Then it reads those links from the database ...30-Mar-2010