$arr1 = array(0 => "a");
$count1 = 0;
//grab name
$query111 = "select name from features";
$name1 = mysql_query($query111, $dbh);
while ($name = mysql_fetch_array($name1)) {
++$count1;
$arr1[] = $name[0]);
echo $arr1[$count1]."<br>";
}
i get a parse error on "$arr1[] = $name[0]);"
what im trying to do is get all the information from the database and put it onto a table to show to people. nothing fancy just to get it to output but im getting this damn error. please help!