0

PHP を使用してデータを cdv/xls ファイルにエクスポートしようとしています。次のエラーが発生し続けます。

*"警告: mysql_query(): 指定された引数は有効な MySQL-Link リソースではありません"*

これが私のコードです:

<?php


//Connect the the database 
require('../mysql_connect.php') ;

$select = "SELECT * FROM customers WHERE email = 'info@example.com'";

$export = mysql_query ( $select, $dbc ) 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-type: application/octet-stream");
header("Content-Disposition: attachment; filename=export.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";


?>

どんな助けでも大歓迎です!

4

1 に答える 1

0

mysql_connect.php インクルードで mysql ではなく mysqli を使用していました。助けてくれてありがとう!

于 2012-10-04T14:23:55.913 に答える