PHP Classes

File: selarr.php

Recommend this page to a friend!
  Classes of Ahmed   MySQL DB Management Class   selarr.php   Download  
File: selarr.php
Role: Example script
Content type: text/plain
Description: example to use selarr method
Class: MySQL DB Management Class
Execute MySQL queries and show paginated results
Author: By
Last change:
Date: 16 years ago
Size: 1,252 bytes
 

Contents

Class file image Download
<?php

/**
 * @package Mysql DB Management Examples
 * @author Ahmed Elbshry(bondo2@bondo2.info)
 * @copyright 2008
 * @access public
 */

try{
    require
'./db.class.php';
   
//الاتصال بقاعدة البيانات مع واخذ نسخه من الكلاس فى خطوة واحده
   
$db = new DB('localhost','root','');
   
   
//اختيار قاعدة البيانات التى سنتعامل معها
   
$db->UseDB('information_schema');
   
   
//كيفية الاستعلام واخراج النتائج فى مصفوفة حرفية ورقمية معا
   
$rsArr = $db->SelArr("SELECT * FROM CHARACTER_SETS");
   
//print_r($rsArr);
   
   
echo "<table border='2'><tr><td>";
    echo
"<table><tr><th colspan='4'><center>Using SelArr Function</center></th></tr>";
    for(
$i=0;$i<count($rsArr);$i++) {
        echo
"<tr><td>".$rsArr[$i]['CHARACTER_SET_NAME']."</td><td>".$rsArr[$i]['DEFAULT_COLLATE_NAME']."</td><td>".$rsArr[$i]['DESCRIPTION']."</td><td>".$rsArr[$i]['MAXLEN']."</td></tr>";
    }
    echo
"</table></td><td>";
    echo
"<table><tr><th colspan='4'><center>Using SelArr Function</center></th></tr>";
    for(
$i=0;$i<count($rsArr);$i++) {
        echo
"<tr><td>".$rsArr[$i][0]."</td><td>".$rsArr[$i][1]."</td><td>".$rsArr[$i][2]."</td><td>".$rsArr[$i][3]."</td></tr>";
    }
    echo
"</table></td></tr></table>";
   
   
$db->Close();
}
catch(
exception $e) {
    echo
$e->getMessage();
}
?>