Re: [PHP] parsing value by URL-worked

2004-05-12 Thread Richard Davey
Hello, Wednesday, May 12, 2004, 12:53:44 PM, you wrote: gr> thanks a lot dear Zac and richard gr> that worked. I earlier tried $_POST[name] but not $_GET[name]. gr> thanks again No worries. One point though - make sure you use $_GET['name'] and *not* $_GET[name] (note the lack of quotes) - there

Re: [PHP] parsing value by URL

2004-05-12 Thread Mark Constable
On Wed, 12 May 2004 09:42 pm, gowthaman ramasamy wrote: > I have a problem in passing the value to another PHP script from the > first one. can any one help me to debug it. > > ENCTYPE="text/plain"> > if(isset($_POST['submit'])) > { > does many things > > $detail_file='testrun_hetero_srtdou

Re: [PHP] parsing value by URL

2004-05-12 Thread Richard Davey
Hello, Wednesday, May 12, 2004, 12:42:30 PM, you wrote: gr> script 2 gr> _ gr> second script ... that is detailedresults.php gr> print $name; gr> print "$name"; ?>> You've probably got Register Globals turned off (and quite rightly) which means t