Brian A. Anderson wrote:
> I am having a difficulty including a url and passing it to an include
> statement between it. The problem is when I have a plain url it works, but
> if I try to pass it something to the query string it does not. Is there
> some
> way to format the string differently befor
> > The below example works:
> > --
> >
> > ob_start();
> > include("http:/-.-.-.-/datachange.asp");
> > $message = ob_get_clean();
> >
> >
> > The below example does not work:
> > --
> > $URL = "http:/-.-.-.-/datachange.asp$queryStri
"Brian A. Anderson" <[EMAIL PROTECTED]> 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:
>
let me try it again...
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();
I am having a difficulty including a url and passing it to an include
statement between it. The problem is when I have a plain url it works, but
if I try to pass it something to the query string it does not. Is there some
way to format the string differently before including it?
ob_start();
...
$r
5 matches
Mail list logo