PHP Classes

File: view.php

Recommend this page to a friend!
  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: 15 years ago
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' ] ];
?>