I received this useful bit of code for storing a page into a variable instead of loading it as an include. But how can I modify this to submit some parameters to a page and collect the returned page / HTML into a variable??

Jeremy
--------------
<?php
/** DocumentB.php */

$text = file_get_contents('DocumentA.php');
echo $text;

?>

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



Reply via email to