tengo el siguiente codigo:
Código PHP:
$fh = fopen("/home/http/tendes/inventaris/$nom.txt","w+");
$numarray= count($carrito);
$numarray= $numarray-1;
$nom1="*".$_SESSION['id_tenda']." - ".$_SESSION['nomtenda']."-".$fecha."\r\n";
fwrite($fh,$nom1);
for($i=0;$i <= $numarray;$i++){
$valor = $carrito[$i][0].";".$carrito[$i][1]."\r\n";
fwrite($fh,$valor);
}
fclose($fh);
if (isset($_SESSION['carrito'])){
unset($_SESSION['carrito']);
}
gracias de antemano,
Saludos