[QUOTE]
$excel_file = fopen("master_order.xls", "w");
fwrite($order_table, $excel_file);
fclose($excel_file);
[/QUOTE]
Your parameters are backwards try altering it to
$excel_file = fopen("master_order.xls", "w");
fwrite($excel_file, $order_table);
fclose($excel_file);
Mark.