|
Posted by Heiko Richler on 01/17/07 10:23
drako wrote:
> 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();
Try doing <?php print_r($_SESSION["increment"]); ?> here ... (*)
> $x = 0 // Counter - This will be
> incremented
(*) do you have any code in here?
What does <?php print_r($increment); ?> tell you?
(*) ... and an other <?php print_r($_SESSION["increment"]); ?> here.
> $_SESSION["increment"][$x] = array("increment_bond" =>
> $_POST["increment_bond"],
> "increment_amount" => $_POST["increment_amount"],
> "increment_comm_date1" => $_POST["increment_comm_date1"],
> "increment_comm_date2" => $_POST["increment_comm_date2"],
> "increment_comm_date3" => $_POST["increment_comm_date3"]);
Heiko
--
http://portal.richler.de/ Namensportal zu Richler
http://www.richler.de/ Heiko Richler: Computer - Know How!
http://www.richler.info/ private Homepage
Navigation:
[Reply to this message]
|