Alphastunent: pdf geht im mozilla, im IE aber nicht

Hallo leute,

hab ein tutorial von hier
http://www.fpdf.org/en/tutorial/tuto5.htm
ein wenig verändert. lade andere daten, die via mysql geholt werden.
Das funktioniert alles soweit im Firefox, aber im IE bekomme ich die fehlermeldung, dass ich ein ungültiges zeichen hätte und zeigt dann gar nichts an, wenn ich damit eine pdf datei erstelle und diese mit IE öffnen versuche. $pdf->Output("test.pdf"); Mit Firefox: einwandfrei.
bzw ab und zu schmeisst er mir das pdf in klartext aus

im unteren fall nun, fragt er, ob ich die datei öffnen oder speichern will und gibt mir dann gar nix aus:
also:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>

was kann ich erstens gegen die abfrage ob ich es speichern will tun und zweitens, wie schaffe ich es, dass der IE das PDF lesen kann?

<?
//Colored table
function FancyTable($header,$data)
{
    //Colors, line width and bold font
    $this->SetFillColor(204,204,204);
    $this->SetTextColor(0,0,0);
    $this->SetDrawColor(0,0,0);
    $this->SetLineWidth(.2);
    $this->SetFont('','B',12);
    //Header
    $this->Cell(160,7,"PROJEKTE",1,0,'C',1);
    $this->Ln();
    //Color and font restoration
    $this->SetFillColor(224,235,255);
    $this->SetTextColor(0);
    $this->SetFont('','',9);
    //Data
    $fill=0;
 $w=array(15,20,20,20,100,15);

foreach($data as $row)
    {
  $this->Cell($w[0],6,"",'',0,'L',$fill);
        $this->Cell($w[1],6,$row[0],'',0,'L',$fill);
        $this->Cell($w[2],6,$row[1],'',0,'L',$fill);
        $this->Cell($w[3],6,($row[2]),'',0,'L',$fill);
        $this->Cell($w[4],6,($row[3]),'',0,'L',$fill);
  $this->Cell($w[5],6,"",'',0,'L',$fill);
        $this->Ln();
        $fill=!$fill;
    }
    $this->Cell(array_sum($w),0,'','T');
}

function Footer()
{
    //Go to 1.5 cm from bottom
    $this->SetY(-15);
    //Select Arial italic 8
    $this->SetFont('Arial','',9);
    //Print centered page number
 $datum = date("d.m.Y");
    $this->Cell(0,10,$datum.'  Seite '.$this->PageNo().' von {nb}',0,0,'C');
}

}

$pdf=new PDF();
$pdf->AliasNbPages();
//Data loading
$data=$pdf->LoadData($welche);
$pdf->SetFont('Arial','',9);
$pdf->AddPage();
$pdf->FancyTable($header,$data);
$pdf->Output();
?>