Ask a Question related to PHP Development, Design and Development.
-
Jared Steckel #1
Accepting data from URL Parameters
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:
[url]http://www.foo.com/myscripts/myscript.php?Value1=value&Value2=value[/url]
How can I retrieve those values in the script? Should I construct the
link differently? Is there a completely different method I'm missing
altogether?
Thanks so much in advance for any help you could provide!
Jared
Jared Steckel Guest
-
Binding null data to web service parameters?
I'm building a simple Flex form that has several TextInput fields that a person can use as search criteria. They are basically optional fields. The... -
Accepting datasets as parameters to webservice
I've created a web service with a method that accepts a string and a dataset as parameters. I've created the proxy class and written a .ASPX page... -
WS parameters & return values data integrity
Hello All, I have built a web service that accepts and sends binary data encoded as base64 strings. What I need to know is if the .NET framework... -
Link Master/Child fields for a subform data source with multiple parameters?
On Mon, 21 Jul 2003 19:36:18 -0700, "Tim Cali" <cali_876@yahoo.com> wrote: Ordinarily one would do so to maintain relational integrity between... -
Extended Stored Procedures accepting Real Parameters
I am looking for examples of Extended stored procedures that accept floating point or decimal numbers as parameters. Any assistance would be... -
Gal #2
Re: Accepting data from URL Parameters
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 an HTML page such as the following:
>
> [url]http://www.foo.com/myscripts/myscript.php?Value1=value&Value2=value[/url]
>
> How can I retrieve those values in the script? Should I construct the
> link differently? Is there a completely different method I'm missing
> altogether?
>
> Thanks so much in advance for any help you could provide!
>
> JaredGal Guest
-
David Robley #3
Re: Accepting data from URL Parameters
In article <Pine.LNX.4.21.0309241037390.2263-
[email]100000@jaredsroom.msns.sm.ptd.net[/email]>, [email]steckelj@jaredsroom.com[/email] says...Each of those values will be available as $_GET{'Value1'} $_GET{'Value2'}> 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:
>
> [url]http://www.foo.com/myscripts/myscript.php?Value1=value&Value2=value[/url]
>
> How can I retrieve those values in the script? Should I construct the
> link differently? Is there a completely different method I'm missing
> altogether?
>
> Thanks so much in advance for any help you could provide!
>
> Jared
etcetera. Note that the variable names are case sensitive.
--
Quod subigo farinam
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet?
David Robley Guest
-
Raquel Rice #4
Re: [PHP] Accepting data from URL Parameters
On Wed, 24 Sep 2003 10:40:42 -0400 (EDT)
Jared Steckel <steckelj@jaredsroom.com> wrote:
Check out the $_GET array.> 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:
>
> [url]http://www.foo.com/myscripts/myscript.php?Value1=value&Value2=value[/url]
>
> How can I retrieve those values in the script? Should I construct
> the link differently? Is there a completely different method I'm
> missing altogether?
>
> Thanks so much in advance for any help you could provide!
>
> Jared
>
--
Raquel
================================================== ==========
What lies behind us and what lies between us are tiny matters
compared to what lies within us.
--Oliver Wendell Holmes
--
Raquel
================================================== ==========
What lies behind us and what lies between us are tiny matters
compared to what lies within us.
--Oliver Wendell Holmes
Raquel Rice Guest



Reply With Quote

