Hi,
I'm a bit stumped as I am getting a "Notice: Array to String
Conversion" error when trying to do something that on the surface
should be a very simple task - create an array, and write a set of
values to them based on data submitted from POST Fields.
Code below:
$_SESSION["increment"] = array();
$x = 0 // Counter - This will be
incremented
$_SESSION["increment"][$x] = array("incremen t_bond" =>
$_POST["increment_bond "],
"increment_amou nt" = $_POST["increment_amou nt"],
"increment_comm _date1" = $_POST["increment_comm _date1"],
"increment_comm _date2" =$_POST["increment_comm _date2"],
"increment_comm _date3" = $_POST["increment_comm _date3"]);
It keeps throwing out that error, and does not write any of the POST
Values to the array (the POST values are definitely getting sent, so
that is not the problem).
If I dump out the value of $_SESSION["increment"], I get "1A" ?!?
I'm sure that there is a pretty simple mistake lurking somewhere - I
just can't seem to figure it out.
Any suggestions or hints ?
Thanks
Neil.
I'm a bit stumped as I am getting a "Notice: Array to String
Conversion" error when trying to do something that on the surface
should be a very simple task - create an array, and write a set of
values to them based on data submitted from POST Fields.
Code below:
$_SESSION["increment"] = array();
$x = 0 // Counter - This will be
incremented
$_SESSION["increment"][$x] = array("incremen t_bond" =>
$_POST["increment_bond "],
"increment_amou nt" = $_POST["increment_amou nt"],
"increment_comm _date1" = $_POST["increment_comm _date1"],
"increment_comm _date2" =$_POST["increment_comm _date2"],
"increment_comm _date3" = $_POST["increment_comm _date3"]);
It keeps throwing out that error, and does not write any of the POST
Values to the array (the POST values are definitely getting sent, so
that is not the problem).
If I dump out the value of $_SESSION["increment"], I get "1A" ?!?
I'm sure that there is a pretty simple mistake lurking somewhere - I
just can't seem to figure it out.
Any suggestions or hints ?
Thanks
Neil.
Comment