Re: Unable to Retrieve HTML Form Values(test1.html) from a PHP Page(test1.php)

2003-10-28 Thread Zak Greant
Dear Prashant, This list is for MySQL questions, rather than PHP questions. Please try the PHP general mailing list ([EMAIL PROTECTED]). Cheers! -- Zak Greant MySQL AB Community Advocate -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists

RE: Unable to Retrieve HTML Form Values(test1.html) from a PHP Page(test1.php)

2003-10-28 Thread Barry Byrne
> -Original Message- > From: Prashant A [mailto:[EMAIL PROTECTED] > Our Site is running on Linux/Apache/PHP/MySQL Combination. > I am unable to retrieve the Values passed from HTML > FORM(test1.html) in a PHP Page(test1.php) > > Is it something to do with the Web Server Settings or any t

Re: Unable to Retrieve HTML Form Values(test1.html) from a PHP Page(test1.php)

2003-10-28 Thread jeffrey_n_Dyke
you need to use $_POST['test1'] http://www.php.net/register_globals php, by default has register_globals=off. for security reasons...so you'll need to use $_POST, $_GET, $_FILES, $_REQUEST etc. hth jeff