[PHP] Re: Accepting data from URL Parameters

2003-09-24 Thread David Robley
In article , [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: > > http://www.foo.com/myscripts/myscript.php?Value1=value

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: >echo 'Value1 = '.$_GET['Value1']; > echo "\n"; > echo 'Value2 = '.$_GET['Value2']; > ?> even better try this: $value) { echo "$key = $value"; } ?> -Jackson > > Jared Steckel wrote: > > I appologize for what may

[PHP] Re: Accepting data from URL Parameters

2003-09-24 Thread Gal
try this: \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 an HTML page such as the following: http://www.foo.com/myscri