Best Tutorials website
Latest tutorials

Advertisment

PHP & MYSQL Setting up the database

PHP & MYSQL Setting up the database

This tutorial is the second part of our PHP/MYSQL series of articles. In this episode we show you setting up a MYSQL Database through phpmyadmin...


Views: 438 | Rating star | by Steve
PHP - Database Related

MySQL Database Handling in PHP

MySQL Database Handling in PHP

This comprehensive mysql tutorials touches on Starting a Session with MySQL,Executing SQL Statements against a MySQL database and demonstrating how...


Views: 443 | Rating star | by Mark
PHP - Database Related

PHP Script Tips - Working with MySQL Database

PHP Script Tips - Working with MySQL Database

A collection of 21 tips on working with MySQL database. Clear explanations and tutorial exercises are provided on connecting and selecting MySQL...


Views: 419 | Rating star | by Steve
PHP - Database Related

Basic mySQL Queries And PHP

Basic mySQL Queries And PHP

This tutorial will help you get started in working with mySQL and PHP. It will assume that you have no prior experience in using mySQL with PHP...


Views: 426 | Rating star | by Sarah
PHP - Database Related

Dumping mySQL Tables to HTML

Dumping mySQL Tables to HTML

In this tutorial we are going to expose basic mySQL queries, and how they can be used to print all data from a mySQL table into an HTML table. This...


Views: 494 | Rating star | by David
PHP - Database Related

Get the Size of a MySQL Database

Get the Size of a MySQL Database

Output the size of a MySQL database with this simple script.


Views: 453 | Rating star | by Steve
PHP - Database Related

Fetch MySQL Row

Fetch MySQL Row

Fetch (retrieve) a specific MySQL row and display it in a simple table.


Views: 502 | Rating star | by Ben
PHP - Database Related

Dynamic Dropdown Menu

Dynamic Dropdown Menu

Put records from your database in a drop down menu/list box. You can apply it as a navigator list box. Good for saving your webpage areas or you...


Views: 529 | Rating star | by Mathew
PHP - Database Related

Paging Results in PHP

Paging Results in PHP

Following examples teaches how to query a mySQL database and getting results in pages. Every page displays results maximum 10 results in a single...


Views: 452 | Rating star | by David
PHP - Database Related

Get Last ID after Insert

Get Last ID after Insert

You can get the ID (AUTO_INCREMENT column as primary key) generated after you insert a new record in your table by a simple function...


Views: 476 | Rating star | by Donald
PHP - Database Related

Show Records by multi Columns in Rows

Show Records by multi Columns in Rows

There are simply to show data records in table rows, just one record by one table row but sometime you need to show data records more than one...


Views: 472 | Rating star | by Isac
PHP - Database Related

Moving From Static to Dynamic - Understanding Databases

Moving From Static to Dynamic - Understanding Databases

Thinking of moving from your old static HTML pages to a dynamic database driven website? Read on, understand database basics, how to retrieve data...


Views: 441 | Rating star | by Troy
PHP - Database Related

Database Abstraction with ADODB

Database Abstraction with ADODB

The use of abstraction layers is a controversial topic among the PHP community. This article discusses the advantages and disadvantages of using...


Views: 531 | Rating star | by Marry
PHP - Database Related

Importing csv data into MySQL with php script

Importing csv data into MySQL with php script

This tutorial will show you how to import csv data into MYSQL with a simple PHP script. Many times you have to write a script because the import...


Views: 415 | Rating star | by Isac
PHP - Database Related

Select random records from a MySQL database

Select random records from a MySQL database

Sometimes it could be very helpful to select a record from a table randomly. You can find such solution when you see random partners or randomly...


Views: 424 | Rating star | by Nick
PHP - Database Related

Database Applications and the Web

Database Applications and the Web

We begin by discussing the three-tier architecture model used in many web database applications. We then introduce the nature of the Web and its...


Views: 452 | Rating star | by Simon
PHP - Database Related

Querying Web Databases

Querying Web Databases

Learn the following techniques: Using the five-step web database querying approach to develop database-driven queries; Using the MySQL library...


Views: 539 | Rating star | by Isac
PHP - Database Related

User-Driven Querying

User-Driven Querying

Pass data from a web browser to a web server; Access user data in scripts; Secure interactive query systems; Query databases with user data;...


Views: 453 | Rating star | by Sarah
PHP - Database Related

Writing to Web Databases

Writing to Web Databases

Writing data in web database applications requires different techniques than reading data. Issues of transactions and concurrency become important,...


Views: 422 | Rating star | by Daniel
PHP - Database Related

Validation on the Server and Client

Validation on the Server and Client

There are three possible data environments in which validation can occur in a three-tiered web database application: in the DBMS, in server-side...


Views: 486 | Rating star | by Daniel
PHP - Database Related