Here is my html with a php script:
<html> <head> <title>Bob's Auto Parts</title> </head> <body> <h1>Bob's Auto Parts</h1> <table width = 100% > <tr> <?php echo "<td>This is working.</td>"; ?> </tr> </table> </body> </html>
Why is the output of this appearing with a ; ?>. I want it to be 'This is working.' only. Here is the ouput
Bob's Auto Parts
Bob's Auto Parts
This is working."; ?>
I know I am doing something wrong here but not able to figure it out. Thanks in advance.