Posted by kjohnson on 03/04/05 21:47
"Brian A. Anderson" <listread@arielpremium.com> wrote on 03/04/2005
12:37:29 PM:
> The below example works:
> ----------------------------------
>
> ob_start();
> include("http:/-.-.-.-/datachange.asp");
> $message = ob_get_clean();
>
>
> The below example does not work:
> ----------------------------------
> $URL = "http:/-.-.-.-/datachange.asp$queryString";
> ob_start();
> include("$URL");
> $message = ob_get_clean();
Does $queryString contain the leading '?', or do you need to add it, as
below:
$URL = "http:/-.-.-.-/datachange.asp?$queryString";
Kirk
[Back to original message]
|