Hi all,
I wish to pass some parameters from "href" (not from a form) to php script. I don't know the exact syntax. Can somebody help me? I wish to pass some parameters like this "<a href= $PHP_SELF ..some parameters here>". I want to know the right syntax. It will be great if some one can give me some reference. Cheers Rainbow
try:
<a href='$PHP_SELF?key=value&other=somthingelse'>Try it</a>
now when clicked you will have a the following php variables: $key = 'value' $other = 'somethingelse'
available to the page.
hth stew