I have a PHP file that tries to echo a $_POST
and I get an error, here is the code:
echo \"\";
echo \"\";
for($i=0; $i&l
You are using in your HTML. This creates an array in PHP when the form is sent.
You are using echo $_POST['C'];
to echo that array - this will not work, but instead emit that notice and the word "Array".
Depending on what you did with the rest of the code, you should probably use echo $_POST['C'][0];