user2764080
user2764080

Reputation: 1

PHP: about using echo

I writed <?php echo '<input type="Radio" name="mark" value="mt">asdasddddd </br>'; ?> in a HTML file.

but it always tell me Parse error: syntax error, unexpected T_ECHO

I found some instructions, but dont know what's wrong with this sntax.

Thanks in advance.

Upvotes: 0

Views: 71

Answers (1)

Madara&#39;s Ghost
Madara&#39;s Ghost

Reputation: 174967

The actual error is somewhere above. The most common thing is an unclosed semicolon (;)

Upvotes: 5

Related Questions