On Thursday 13 June 2002 14:18, Balaji Ankem wrote:
> Hi friend,
>  Just now I have installed php 4.2.1 on my windows NT machine.

Did you read the release notes or the documentation which comes with it, or 
the manual even?

>  Here I found I am not able to get the postfield values.
>  What would be the reason?

register_globals is disabled. Read the manual or search the archives for more 
info.

>               echo "emp_id: ".$emp_id;
>               echo "emp_pass:".$emp_pass;

Use :

  echo "emp_id: ".$_POST['emp_id'];

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
The strong give up and move away, while the weak give up and stay.
*/


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

Reply via email to