"; print_r($result); echo ""; $row = mysqli_fetch_array($result); //$row = mysqli_fetch_array($result, MYSQLI_NUM); //Indexed array //$row = mysqli_fetch_array($result, MYSQLI_ASSOC); //Associative array $row = mysqli_fetch_array($result, MYSQLI_BOTH); //This is the default. echo "
";
echo "$row[1]
"; echo "$row[salutation]
"; echo "{$row['salutation']}
"; echo "
"; //echo "$row['salutation']
"; //Will not work without the braces. mysqli_close($db); ?>