I have an array and PHP and when I print it out I can see the values I need to access, but when I try accessing them by their key I am getting a PHP Notice. I printed the ar
How did you print the array? I would suggest print_r($arrayName);
print_r($arrayName);
Next, you can print individual elements like: echo $arrayName[0];
echo $arrayName[0];