[PHP-DOC] base64 image file From: MacHara (hara <email protected>)
Date: 09/13/00

Hello

I am trying to decode base64 encoded mail attachment file on php
environment..

This file is printed out directly from qmail server and save into
regular directory..

<?php

$file = './pic';

$decoded = base64_decode($file);

print "<html>\n";
print "<body>\n";
print "<img src='$decoded'>\n";
print "</body>\n";
print "</html>\n";

?>

This does not show any on web browser...

nhara