I am new to PHP and have a question about it.
<?php
echo "Do you like it?";
echo "<br>";
echo "My name is:<b><i><div style="text-align:center;">Karthic</div></i></b> ";
?>
When I try to load this script in my browser, I am getting this error:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\AppServ\www\text.php on line 11
Lline 11 is
echo "My name is:<b><i><div style="text-align:center;">Karthic</div></i></b> ";
How can I fix this?