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

[PHP] parsing value by URL-worked

2004-05-12 Thread gowthaman ramasamy
thanks a lot dear Zac and richard that worked. I earlier tried $_POST[name] but not $_GET[name]. thanks again i ll reset what richard mentioned. On Wed, 2004-05-12 at 17:12, Zac Hillier - Net Affectors wrote: > try $_GET[name] > > Zac > > -- PHP General Mailing List (http://www.php.net/) To u

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

[PHP] parsing value by URL

2004-05-12 Thread gowthaman ramasamy
hello list, I have a problem in passing the value to another PHP script from the first one. can any one help me to debug it. I generate the following URL from first script to pass two variables to next script. But the values are not passed on. But the URL invokes the second script (ya with out par