PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Rafal Antczak   RA PHP MySQL CRUD class   index.php   Download  
File: index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: RA PHP MySQL CRUD class
Manipulate data in MySQL database tables
Author: By
Last change:
Date: 5 years ago
Size: 593 bytes
 

Contents

Class file image Download
<?php
/*
 * index file of class table 2.0
 */

   
$br = "<br>";

    echo
"Welcome to CLASS TABLE" . $br . $br;
   
    echo
"In order to perform all examples you need to have created simple mySQL database with at least 1 table and a few rows and columns filled up" . $br . $br;
   
    echo
"Also, with the purpose to proper connection with your database you have to replace sample parameters in db_params.php file" . $br . $br;
   
    echo
"Note that class table returns data in arrays. Data are indexed and have keys, as well. Your decision is which way you use";


?>