[PHP-DEV] Bug #11059 Updated: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works OK.

2001-05-24 Thread bub

ID: 11059
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Open
Bug Type: Variables related
Operating system: RedHat 5.1
PHP Version: 4.0.5
Description: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works 
OK.

It doesn't work either and $PHP_SELF is empty as well. I did not know that, because I 
didn't use it my scripts. 

Previous Comments:
---

[2001-05-24 12:48:57] [EMAIL PROTECTED]
The system speed wouldn't impact behavior, no.

Your script refers to $data['n_id'] though, not $data['id'].  Let's remove any 
confusion and work with a very basic script:

a href=? echo $PHP_SELF ??getvariable=workingClick here/a
Getvariable is: ? echo $HTTP_GET_VARS['getvariable'] ?

Try that one out.


---

[2001-05-24 03:22:17] [EMAIL PROTECTED]
valiables_order is set to EGPCS. I tried EPCSG but it did not work either. 

$data[id] was non empty.

The computer in question is i486 with 12 MB RAM. Could that be a problem? 


---

[2001-05-23 17:54:47] [EMAIL PROTECTED]
Was $data['n_id'] non-empty in board.php?

Your script works fine for me when I add $data['n_id'] = 1;

---

[2001-05-23 16:48:03] [EMAIL PROTECTED]
What is the setting for this directive in your php.ini:

variables_order

--Jani




---

[2001-05-23 13:39:30] [EMAIL PROTECTED]
Everything else seems to be OK except the GET method

Thanks in advance for follow up the problem.

---

The remainder of the comments for this report are too long.  To view the rest of the 
comments, please view the bug report online.

Full Bug description available at: http://bugs.php.net/?id=11059


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #11059 Updated: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works OK.

2001-05-24 Thread bub

ID: 11059
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Variables related
Operating system: RedHat 5.1
PHP Version: 4.0.5
Description: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works 
OK.

It doesn't work either and $PHP_SELF is empty as well. I did not know that, because I 
didn't use it my scripts. 

Previous Comments:
---

[2001-05-24 13:14:30] [EMAIL PROTECTED]
It doesn't work either and $PHP_SELF is empty as well. I did not know that, because I 
didn't use it my scripts. 

---

[2001-05-24 12:48:57] [EMAIL PROTECTED]
The system speed wouldn't impact behavior, no.

Your script refers to $data['n_id'] though, not $data['id'].  Let's remove any 
confusion and work with a very basic script:

a href=? echo $PHP_SELF ??getvariable=workingClick here/a
Getvariable is: ? echo $HTTP_GET_VARS['getvariable'] ?

Try that one out.


---

[2001-05-24 03:22:17] [EMAIL PROTECTED]
valiables_order is set to EGPCS. I tried EPCSG but it did not work either. 

$data[id] was non empty.

The computer in question is i486 with 12 MB RAM. Could that be a problem? 


---

[2001-05-23 17:54:47] [EMAIL PROTECTED]
Was $data['n_id'] non-empty in board.php?

Your script works fine for me when I add $data['n_id'] = 1;

---

[2001-05-23 16:48:03] [EMAIL PROTECTED]
What is the setting for this directive in your php.ini:

variables_order

--Jani




---

The remainder of the comments for this report are too long.  To view the rest of the 
comments, please view the bug report online.

Full Bug description available at: http://bugs.php.net/?id=11059


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #11059: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works OK.

2001-05-23 Thread bub

From: [EMAIL PROTECTED]
Operating system: RedHat 5.1
PHP version:  4.0.5
PHP Bug Type: Feature/Change Request
Bug description:  PHP does not register GET variables $HTTP_GET_VARS is empty. POST 
works OK.

I have this problem:

PHP does not register GET variables. $HTTP_GET_VARS is empty. POST works OK.

PHP 4.05 is compiled as Apache 1.3.19 module on linux RH 5.1




-- 
Edit Bug report at: http://bugs.php.net/?id=11059edit=1



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #11059 Updated: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works OK.

2001-05-23 Thread bub

ID: 11059
User Update by: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Open
Bug Type: Feature/Change Request
Operating system: RedHat 5.1
PHP Version: 4.0.5
Description: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works 
OK.

the link is generated in one document like this:
board.php
echo(a href=\drop.php?id= . urlencode($data[n_id]) .\ DROP/a\n);
.
and in drop.php?id=1 variable $HTTP_GET_VARS is not set. 
if (isset($HTTP_GET_VARS[id])){
   $n_id = $HTTP_GET_VARS[id];
}else{
   $n_id = 0;
}
This worked on WinNT5.0 with apache 1.3.14 and PHP 4.0.4pl1 as a module.  
I've compiled apache and PHP as a static module.  

./cofigure --with-mysql --with-apache=../apache_1.3.19

Previous Comments:
---

[2001-05-23 12:50:45] [EMAIL PROTECTED]
Works for me just fine. Can you please add a shortest
possible script into this report which can be used to reproduce this problem?

--Jani


---

[2001-05-23 12:38:18] [EMAIL PROTECTED]
I have this problem:

PHP does not register GET variables. $HTTP_GET_VARS is empty. POST works OK.

PHP 4.05 is compiled as Apache 1.3.19 module on linux RH 5.1



---


Full Bug description available at: http://bugs.php.net/?id=11059


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DEV] Bug #11059 Updated: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works OK.

2001-05-23 Thread bub

ID: 11059
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Feature/Change Request
Operating system: RedHat 5.1
PHP Version: 4.0.5
Description: PHP does not register GET variables $HTTP_GET_VARS is empty. POST works 
OK.

Everything else seems to be OK except the GET method

Thanks in advance for follow up the problem.

Previous Comments:
---

[2001-05-23 13:35:13] [EMAIL PROTECTED]
the link is generated in one document like this:
board.php
echo(a href=drop.php?id= . urlencode($data[n_id]) . DROP/an);
.
and in drop.php?id=1 variable $HTTP_GET_VARS is not set. 
if (isset($HTTP_GET_VARS[id])){
   $n_id = $HTTP_GET_VARS[id];
}else{
   $n_id = 0;
}
This worked on WinNT5.0 with apache 1.3.14 and PHP 4.0.4pl1 as a module.  
I've compiled apache and PHP as a static module.  

./cofigure --with-mysql --with-apache=../apache_1.3.19

---

[2001-05-23 12:50:45] [EMAIL PROTECTED]
Works for me just fine. Can you please add a shortest
possible script into this report which can be used to reproduce this problem?

--Jani


---

[2001-05-23 12:38:18] [EMAIL PROTECTED]
I have this problem:

PHP does not register GET variables. $HTTP_GET_VARS is empty. POST works OK.

PHP 4.05 is compiled as Apache 1.3.19 module on linux RH 5.1



---


Full Bug description available at: http://bugs.php.net/?id=11059


-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]