PHP Classes

File: Exemplo/ExportCvs.php

Recommend this page to a friend!
  Classes of Maicon gonçalez   PHP JSON DB Class   Exemplo/ExportCvs.php   Download  
File: Exemplo/ExportCvs.php
Role: Example script
Content type: text/plain
Description: CVS Export
Class: PHP JSON DB Class
Manipulate JSON data as database tables
Author: By
Last change:
Date: 8 years ago
Size: 426 bytes
 

Contents

Class file image Download
<?php
require_once("_Setup.php");

//http://jsondb.inclouds.com.br/index.php/Page/exportar-para-cvs

//Export All
$User = new ModelJdb_Users();
/**
* $Delimiter is Optional
* Ex: $User->getCvs(";");
* Ex: $User->getCvs(",");
*/
$User->getCvs();

//Export Results
$User = new ModelJdb_Users();
$User->findByNome("Felipe");
/**
* $Delimiter is Optional
* Ex: $User->getCvs(";");
* Ex: $User->getCvs(",");
*/
$User->getCvs();