18 lines
395 B
PHP
18 lines
395 B
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* Created on 30/09/2008
|
||
|
|
*
|
||
|
|
* To change the template for this generated file go to
|
||
|
|
* Window - Preferences - PHPeclipse - PHP - Code Templates
|
||
|
|
*/
|
||
|
|
include("functions.php");
|
||
|
|
include_once("Objects/Pedido.php");
|
||
|
|
include_once("Objects/BD.php");
|
||
|
|
|
||
|
|
$consulta="select * from pedidos";
|
||
|
|
$bd=new BD();
|
||
|
|
$resultado=$bd->execQuery($consulta);
|
||
|
|
$pedido=new Pedido("10010001");
|
||
|
|
|
||
|
|
?>
|