Hi, I am trying to print the following array:
print("<td id='cell1'>$itemArray[$count][transport])>");
but instead of it giving the expected output i get this:
Array[transport]
I know the array assignment is correct because it will print if I first assign the array element to a variable, then substitute the variable in place of the array. It also works if I remove the double quotes on each side, but then I am unable to print the html code. Can anyone tell me what I am doing wrong?