Re: Arrays and PHP 4.2

From: Andrew McMillan <andrew(at)catalyst(dot)net(dot)nz>
To: Kelvin Varst <kelvin(at)varst(dot)dk>
Cc: Postgresql PHP <pgsql-php(at)postgresql(dot)org>
Subject: Re: Arrays and PHP 4.2
Date: 2002-11-10 22:42:20
Message-ID: 1036968139.2083.12.camel@kant.mcmillan.net.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Mon, 2002-11-11 at 05:50, Kelvin Varst wrote:
> Hi,
>
> wich is building a string to a Postgres query, then it worked on PHP 4.1. I
> have changed the line to:
>
> $temp = $temp . ", {$names[$n]} = '" . $_GET[new[$n]] . "'";
>
> wich is not working. What am I doing wrong, it is only a problem on the
> array, single variables works.

Shouldn't that be:

$temp = $temp . ", {$names[$n]} = '" . $_GET[new][$n] . "'";

The array is still there, it's just that it is now a sub-dimension of
another array.

Regards,
Andrew.
--
---------------------------------------------------------------------
Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
Survey for nothing with http://survey.net.nz/
---------------------------------------------------------------------

Browse pgsql-php by date

  From Date Subject
Next Message Ludwig Lim 2002-11-11 04:00:46 Re: Transaction including two web page + timer
Previous Message Cornelia Boenigk 2002-11-10 18:42:07 Re: Arrays and PHP 4.2