PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Koeksal T.   PHP Query In Action   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: test file for the Class
Class: PHP Query In Action
MySQL fluent query builder and executor
Author: By
Last change:
Date: 10 years ago
Size: 172 bytes
 

Contents

Class file image Download
<?php

include("class.QueryInAction.php");

$query = QueryInAction::config("localhost","root","","dbNames");

var_dump($query->select("*")->from("names")->execute());


?>