Re: Turning result into array from columns

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Yea, thanks. I forgot to hit reply to all. I usually use sprintf for mysql
injection stuff. I use that function from php.net for
mysql_real_escape_string.

On 9/23/06, Matthias Willerich <matthias@xxxxxxxxxxxxxxxxxx> wrote:

Hello,
>  $q = sprintf("SELECT id FROM content");
This has nothing to do with your problem, but why don't you just do the
following?
$q = 'SELECT id FROM content';

But here's your problem. Change
>  $realones = $row['id'];
into
$realones[] = $row['id'];
And you get your desired result.

Matthias





--
Dave W

[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux