Problems including a url with query string variables

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

 



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();
...
$result = ob_get_clean();

The below example works:
----------------------------------

$URL = "http:/-.-.-.-/datachange.asp";
ob_start();
include("$URL");
$message = ob_get_clean();


The below example does not work:
----------------------------------

$URL = "http:/-.-.-.-/datachange.asp$queryString";
ob_start();
include("$URL");
$message = ob_get_clean();

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