nepzap2 Posted July 16, 2009 Share Posted July 16, 2009 I have never seen this error before. Parse error: syntax error, unexpected T_ECHO, expecting ',' or ';' in SummerDB/internship/admin_pi.php on line 69 This is my line 69 <?php echo "<input type='hidden' name='pi_eval_applicant_id_" . $count . "' value='" . $row['id'] . "'>\n"; ?> Can someone shed some light into what I may be doing wrong? Link to comment https://forums.phpfreaks.com/topic/166229-can-some-one-help-me/ Share on other sites More sharing options...
akitchin Posted July 16, 2009 Share Posted July 16, 2009 it means that you've forgotten a semicolon on the line above, so when PHP reaches line 69, it's wondering "just what in tarnation is going on here? this shouldn't be a new line!" if you ever have trouble finding an error on a line that is referenced in an error, have a look at the line above - that's the most likely location of the error. Link to comment https://forums.phpfreaks.com/topic/166229-can-some-one-help-me/#findComment-876576 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.