Thread: My brain aches.
View Single Post
03-08-2005, 01:06 AM
#1
seen.to is offline seen.to
seen.to's Avatar
Status: unusual suspect ™
Join date: Feb 2005
Location: Lancaster, PA from London UK
Expertise:
Software:
 
Posts: 1,814
iTrader: 0 / 0%
 

seen.to is on a distinguished road

  Old  My brain aches.

I'm using this (created by my programmer)

Code:
$mystring = $_SERVER['QUERY_STRING'];
But it's turning out the URL with & instead of & which is needed for total validation (as required by the client).

I've changed

Code:
arg_separator.output = "&"
to

Code:
arg_separator.output = "&"
in PHP.ini which fixed some previous issues with the same problem but not this time.

I tried
Code:
str_replace ("&","&amp");
but wasn't quite sure of the syntax, where to put it in the string, or if it's even the right thing :-/

Any ideas you PHP guru's out there?