如何在PHP中从MySQLi获取数组中获取单个值?

时间:2015-05-16 08:44:43

标签: php arrays

我想从数组$ row_img中获取$ row_img [' image_name']的单个值。 $ images []存储所有值。我想打印$ images [1]。

//The Code

while($row_img = mysqli_fetch_array($result_img)){ 
$images[] = $row_img['image_name']; 

} 
 print($images[1]);

以下是数组值:

$images[0] => 1431731493bg-2 - Copy.jpg
$images[1] => testing.jpg
$images[2] => housing.jpg

显示的错误:

Notice: Undefined variable: images in C:\wamp\www\rightenter\property.php on line 96
Call Stack
#   Time    Memory  Function    Location
1   0.0020  304616  {main}( )   ..\property.php:0

0 个答案:

没有答案