0
Why am i coding and when i run a program i get errors like "unexpected < on line for example 2 and on the line there is <form>
Which kind of error is this?
2 Respuestas
+ 2
According to the php code in your profile, you must close the php tag before writting html to output as is:
<?php
// php code
?> <!-- here's the php closing tag, and now start static html -->
<input ...>
+ 1
Maybe the error is on the line before that. Check what is before the error. Maybe you forgot to end something.