- Home
- Categorie
- Coding e Sistemistica
- PHP
- Problema php-excel
-
Problema php-excel
Ciao a tutti e grazie in anticipo
ho un problema con uno script in php che deve esportarmi i dati in excel.
Per funzionare, funziona, l'unico problema, in excel, la prima riga resta vuota, i dati partono dalla seconda
ecco lo script:....... $select=" SELECT campo1,campo2,campo3... FROM subito where data betwenn '$data1' and '$data2'"; $header=""; $data=""; $export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) ); $fields = mysql_num_fields ( $export ); for ( $i = 0; $i < $fields; $i++ ) { $header .= mysql_field_name( $export , $i ) . "\t"; } while( $row = mysql_fetch_row( $export ) ) { $line = ''; foreach( $row as $value ) { if ( ( !isset( $value ) ) || ( $value == "" ) ) { $value = "\t"; } else { $value = str_replace( '"' , '""' , $value ); $value = '"' . $value . '"' . "\t"; } $line .= $value; } $data .= trim( $line ) . "\n"; } $data = str_replace( "\r" , "" , $data ); if ( $data == "" ) { $data = "\n(0) Records Found!\n"; } header("Content-typeheader: application/vnd.ms-excel"); header("Content-Disposition: attachment; filename=esporta.xls"); header("Pragma: no-cache"); header("Expires: 0"); print "$header\n$data";
ho provato a cambiare gli header e ha fare qualche modifica, ma niente
graziePs: se conoscete un modo elegante per impedire che excel tolga gli zero davanti ai numeri vi sarei molto riconoscente
grazie di nuovo