PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Elminson De Oleo   Table from Insert   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example using the class
Class: Table from Insert
Generate create table SQL from an insert query
Author: By
Last change:
Date: 10 years ago
Size: 478 bytes
 

Contents

Class file image Download
<?php
$insert
="INSERT INTO `npanxx` (`id`, `npa`, `nxx`, `xi`, `xf`, `npanxx`, `region`, `provincia`, `cliente`, `servicio`, `tipored`, `localidad`, `remoto`, `central_host`, `fecha_inst`, `fecha_serv`, `compania`) VALUES (1, '809', '201', '00', '99', '809201', 'No aplica', 'No aplica', '', 'CELULAR PREPAGO', 'Movil', '30 de marzo', '', '30 de Marzo AUTOPLEX', '17/06/2005', '01/07/2005', 'CODETEL');
"
;
$class= new table_from_insert();
echo
$class->create($insert);

?>