我有餐桌人。
id, age
-- -----
1 2
2 5
3 6
4 7
5 8
我想从年龄中得到一个值。我下面的代码的结果是 25678。我怎样才能得到一个值。
$query= "SELECT age FROM person";
$result= mysql_query($query) or die ("Query error: " . mysql_error());
while($row = mysql_fetch_array($result))
{
$age= $row['age'];
echo $age; // the result will be 25678
// i want to get a value from the result ex = 5 or 6
//I try with call the index like my code bellow but It's not working
echo $age[1];
echo $age[2];
}
有人可以帮我吗...