[PHP] Re: Accepting data from URL Parameters

2003-09-24 Thread Gal
try this: ?php echo 'Value1 = '.$_GET['Value1']; echo br\n; echo 'Value2 = '.$_GET['Value2']; ? Jared Steckel wrote: I appologize for what may be a newbie-like request, but I have not been able to find this information in the PHP documentation. If I were to have a link on

Re: [PHP] Re: Accepting data from URL Parameters

2003-09-24 Thread Jackson Miller
On Wednesday 24 September 2003 9:47, Gal wrote: try this: ?php echo 'Value1 = '.$_GET['Value1']; echo br\n; echo 'Value2 = '.$_GET['Value2']; ? even better try this: ?php foreach ($_GET as $key=$value) { echo $key = $valuebr /; } ? -Jackson Jared Steckel wrote: I

[PHP] Re: Accepting data from URL Parameters

2003-09-24 Thread David Robley
In article Pine.LNX.4.21.0309241037390.2263- [EMAIL PROTECTED], [EMAIL PROTECTED] says... I appologize for what may be a newbie-like request, but I have not been able to find this information in the PHP documentation. If I were to have a link on an HTML page such as the following: