Re: Problems including a url with query string variables

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> > 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


Yes it includes a "?".
I am thinking it might be a problem with the order of processing. Includes
first , then everything else....
Is there any way to include a file only after a conditional?

-Brian

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux