Posted by usenet on 04/06/07 21:23
On 6 Apr 2007 12:36:14 -0700, "den5385@gmail.com" <den5385@gmail.com> wrote:
><?php
>echo "bbb";
>include("common/funcs.php");
>echo "a";
>?>
>
>When accessing the above test code from a browser it prings 'bbba.'
>When accessing the page from a MFC app, it just prints 'bbb.'
>Everying print or echo statement after the include gets ignored. Why
>would this be?
Something in the included file is probably causing processing to terminate. Try
checking your error log for clues.
[Back to original message]
|