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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: thomasw at wanadoo dot nl
New email:
PHP Version: OS:

 

 [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: Thu Mar 28 09:01:26 2024 UTC