>> The bummer is that the Shockwave file called though this sytem alone
>> works fine.  Just in combination with the HTML does it get messed up.
>> I am suspecting some kind of a header problem but the image that is
>> served on this HTML page comes up just fine.
>
>
> I do not know how Your code looks like for that but maybe You should use
> ob functions  somewhere , as serving html file causes hedaers to be
> already sent.
>
> Piotras

I've actually tried the ob commands I've tried it two different ways.

ob_start();
mgd_serve_attachment($attachid);
ob_end_flush();

and
ob_start();
mgd_serve_attachment($attachid);
$content = ob_get_contents();
ob_end_clean();
echo $content;

Neither worked.

Dan



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to