Ver Mensaje Individual
  #7 (permalink)  
Antiguo 28/08/2009, 13:47
Avatar de GXT2
GXT2
 
Fecha de Ingreso: junio-2009
Ubicación: Fort Lauderdale, FL
Mensajes: 152
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: XML para compartir

Cita:
$cabecera="<?xml version='1.0' encoding='utf-8' ?>";
fputs($fd,$cabecera);

$cabecera="<catalog>";
fputs($fd,$cabecera);


//echo "Ingreso satisfactorio al ciclo WHILE"."<br>";

$cont=1;

while (is_array($Datos))
{
/*************************Abre product******************************************* *** ***********/

$item="<product>";

fputs($fd,$item);

/*************************product ID********************* ********************************************/

$item="<id>";

fputs($fd,$item);

$item= $Datos['prodid'];

fputs($fd,$item);

$item="</id>";

fputs($fd,$item);