I want to include a parameterised URL in a php script. Something like

<?php

include "http://www.myprimary.com/form.php?persion=1";

?>


where form.php might contain something like

<?php
echo "<form><input type=hidden name=person value=$_GET['person']></form>";
?>


Is this possible (in particular is it possible if the script is on a
different machine)?

Is there some way to achieve this effect. I'm trying to keep things as
modular as possible even to the extent that some modules live on different
servers.

TIA

Henry



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

Reply via email to