> -----Original Message-----
> From: Andy [mailto:[EMAIL PROTECTED]]
> Sent: 04 January 2002 20:24
> To: [EMAIL PROTECTED]
> Subject: [PHP-DB] Re: Array not supported for strings???
>
> $stmt= "
> SELECT country
> from $DB2.$geo_T1
> where country_code = '$country_id[$i]'
> ";
Well, this should be
where country_code = '${country_id[$i]}'
to be sure of doing what you want.
> > This code:
> > $country[] = $row->country;
> >
> > Creates following error msg:
> > Fatal error: [] operator not supported for strings
Is this error coming from PHP or your database? And does it definitely refer to this
particular line?
Cheers!
Mike
---------------------------------------------------------------------
Mike Ford, Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS, LS6 3QS, United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]