Re: gather reply from POST

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

 



On Wed, May 18, 2005 11:55 am, Jeremy Reynolds said:
 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;

?>

Try: <?php $foo = 1; $bar = 2; $text = file_get_contents("DocumentA.php?foo=$foo&bar=$bar"); echo $text; ?>

If that doesn't work, go to http://php.net/curl

--
Like Music?
http://l-i-e.com/artists.htm

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

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