[Fwd: Re: Help...]
am 16.12.2002 23:57:07 von Bret HughesI meant to reply all with this
On Mon, 2002-12-16 at 16:26, Francisco Mosse - (Zivals) wrote:
> Hi!
>=20
> What is wrong? My server has PHP and Postgre
> I can=B4t understand hoy do I get this error... look
> I start with a value ($quebuscototal) and I should get an array like this=
("'abc', 'def', 'ghi', 'jkl') ?
> but with this code, what I receive is an array where the first element is=
'abc', 'def', 'ghi', 'jkl'
> instead of being 'abc' (and the second one, 'def', the third one 'ghi', e=
tc.)
>=20
> $quebuscototal =3D "abc def ghi jkl";
> $quebuscototal =3D str_replace(' ',' \', \'',$quebuscototal);
> $quebuscototal =3D "'$quebuscototal'";
> $quebuscofinal =3D array($quebuscototal);
> $quees =3D "$quebuscofinal[1] ";
>=20
> What is wrong with my code? Thanks!!
I see what you are trying to do but I think that the internal
representation of the variable that contians the string :
'abc ', 'def ', 'ghi ', 'jkl'
is not the same as four seperate strings of abc def ghi jkl
Use the split function
$quebuscototal =3D "abc def ghi jkl";
$quebuscofinal =3D split(' ', $quebuscototal);
$quees =3D "$quebuscofinal[1] "
HTH
Bret
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)