On Friday 18 July 2003 12:40, Uma Shankari T. wrote:

>   I am facing one problem..i am getting one variable value from another
> file by using href..I need to use that value in the entire file..how can i
> do that..??
>
> for example i am using the href like this..
>
> <a href=$next/index.php?year=Apr1998 target=right>

You should be using correctly formed HTML:

 <a href="..." xxx="...">

> i am passing the Apr1998 to the index file..i need to use the Apr1998
> value fully in any places in index.php..how can i use that ??

echo $_GET['year']; // Apr1998

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
Given its constituency, the only thing I expect to be "open" about [the
Open Software Foundation] is its mouth.
                -- John Gilmore
*/


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

Reply via email to