git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk/src@1 e2b1556b-49f8-d141-9351-52d6861a72d9
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");
|
|
|
|
?>
|