Re: [PHP] Problems including a url with query string variables

2005-03-04 Thread Richard Lynch
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

Re: [PHP] Problems including a url with query string variables

2005-03-04 Thread Brian A. Anderson
> > 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

Re: [PHP] Problems including a url with query string variables

2005-03-04 Thread kjohnson
"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: >

Re: [PHP] Problems including a url with query string variables

2005-03-04 Thread Brian A. Anderson
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();

[PHP] Problems including a url with query string variables

2005-03-04 Thread Brian A. Anderson
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