php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #18153 Wrong entry in php.ini causes problems with query processing
Submitted: 2002-07-03 18:59 UTC Modified: 2002-09-11 11:24 UTC
From: thomasw at wanadoo dot nl Assigned:
Status: Not a bug Package: PHP options/info functions
PHP Version: 4.2.1 OS: Linux 2.4.18
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
16 - 5 = ?
Subscribe to this entry?

 
 [2002-07-03 18:59 UTC] thomasw at wanadoo dot nl
<? echo $blah; ?>
produces nothing when the script is called with ?blah=hello
when this is set in php.ini:

; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&".
; NOTE: Every character in this directive is considered as separator!
arg_separator.input = ";&"

It does produces something ("hello") when set to this:
; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&".
; NOTE: Every character in this directive is considered as separator!
arg_separator.input = "&;"

I dont know if this is a problem in the php code or just the ini.. The change made it work fine though :-)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-07-03 19:06 UTC] sniper@php.net
I can not reproduce this. Try this script instead:

<?php print_r($_GET); ?>


 [2002-09-11 11:24 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 03:01:27 2024 UTC