Login   Register  
PHP Classes
elePHPant
Icontem

File: view.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of László Zsidi  >  DBX Parser  >  view.php  >  Download  
File: view.php
Role: Example script
Content type: text/plain
Description: Example script
Class: DBX Parser
Converts MS Outlook e-mail files to EML format
Author: By
Last change: Set header
Date: 2009-03-06 21:41
Size: 257 bytes
 

Contents

Class file image Download
<?php
include "dbx.class.php";

$dbx = new DBX "test.dbx" );
$messages $dbx -> DBXParse ( );

header 'Content-type:message/rfc822' );
header 'Content-disposition:attachment;filename=message.eml');

echo 
$messages $_GET 'item' ] ];
?>