26/09/2005, 16:30
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 11
Antigüedad: 19 años, 1 mes Puntos: 0 | |
parte del servidor:
Código:
...
...
$total = $materialCosts + $coverCosts + $finishingCosts + $copyCostTotal + $deliveryCost;
// pound = £
$xml = "<?xml version='1.0' standalone='yes'?>";
$xml = $xml."<price>£".$total."</price>";
header('Content-Type: text/xml');
echo utf8_encode($xml);
|