hi,
i have a little array problem
while ( $row = mysql_fetch_array($query)) {
$Array[] = $row[0];
}
$current = $Array[0][0];
print $current;
now, this code is meant for the id-s in a mysql table. if the id has only one nummeric place (ie 8 or 9) print $current; returns that value. but when the id has two nummeric places (ie 12 or 43) print $current; returns only the first nummeric place (when 12, it returns 1; when 43 it returns 4)
how can i it return all the nummeric places? even if the id is 1000 or whatever.
thankyou in advance,
peeter