Not an extremely specific subject line, I know, but I couldn't think of what else to call this.
To start, we're running RH 9, Apache 2.0.40-21.3, and PHP 4.2.2-17. Here's the problem. With even just a simple submission form that we created to try test with, the value data in the submitted form array repeats the value along with the name of the form. This occured first in a site we were working on that has many classes and includes so we created the page below to test if it were a class interfering. It doesn't appear to be. Has anyone else had this problem, or know how to fix it? I can't seem to find an issue in the php.ini or httpd.conf files either.
Thanks in advance for any help.
Kevin
-------------------------------PHP page-----------------------------------
<?php
if (!$POST)
{
echo('<FORM METHOD=POST>name: <INPUT TYPE="text" NAME="name"><INPUT TYPE="submit" value="register"></FORM>'
);
}
else
{
echo('<PRE>');print_r($POST);print_r($REQUEST);print_r($SESSION);echo('</PRE>');
}
?>
--------------------------------End Code----------------------------------
-------------------------Page Output on Submit------------------------
Array
(
[name] => Kevinname=Kevin
)
Array
(
[name] => Kevinname=Kevin
)
----------------------------End Page Output----------------------------