PHP Classes

File: examples/store_frommysql.php

Recommend this page to a friend!
  Classes of Everton da Rosa   XtPHP   examples/store_frommysql.php   Download  
File: examples/store_frommysql.php
Role: Example script
Content type: text/plain
Description: Example script
Class: XtPHP
General purpose library of utility classes
Author: By
Last change:
Date: 9 years ago
Size: 274 bytes
 

Contents

Class file image Download
<?php

require '../store.php';
require
'../utils.php';
require
'../mysql.php';

XtMysql::connect('localhost', 'root', 'lise890', 'information_schema');

$result = XtMysql::qry("select * from collations");

$store = XtStore::fromMysql($result);

XtUtils::printr($store);

?>