I'm working on an older program and they make extensive use of tables (and I'm not allowed yet to get rid of them. I am using eclipse as the editor.
This line is in between two <td>s
<input type="hidden" name="ID" value="<?php echo $tmp['tmicAppID']; ?>">
while it doesn't cause anything to crash (although there are so many other issues with the code, I'm not actually certain of that statement
Multiple annotations found at this line:
- Invalid character used in text string (<?php echo $tmp
['tmicAppID']; ?>"> ).
- Start tag (<input>) not closed.
- Invalid text string (<?php echo $tmp['tmicAppID']; ?>"> ).
- Invalid location of tag (input).
Could someone please point me to what is wrong with this line? I get the same error message in some other pages also.
TIA