<?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";
 
 
 
?>
 
 |