Although a standalone .php page works just fine, if I embed php into an html
page it doesn't work. Here's a part of what I'm trying:
<body>
<p>Hello World</p>
<?php echo "<p>now is the time</p>"; ?>
<p>Bye</p>
</body>
I've also tried:
<script language='php'> echo "<p>now is the time</p>"; </script>
Thanks.
page it doesn't work. Here's a part of what I'm trying:
<body>
<p>Hello World</p>
<?php echo "<p>now is the time</p>"; ?>
<p>Bye</p>
</body>
I've also tried:
<script language='php'> echo "<p>now is the time</p>"; </script>
Thanks.
Comment