I have two questions. Can a page with a .htm extension have PHP working on it. I thought if I put:
<?php
session_start();
?>
<html>
In the code, PHP knew there would be PHP on the page. Correct??
My second question is I have a page of input boxes on a form that will be filled from a query. I am using this code in the HTML, but it displays the PHP expression?
<input name="AA" value="<? =$_SESSION['AA'] ?>" size="22"></font></td>
Many thanks
<?php
session_start();
?>
<html>
In the code, PHP knew there would be PHP on the page. Correct??
My second question is I have a page of input boxes on a form that will be filled from a query. I am using this code in the HTML, but it displays the PHP expression?
<input name="AA" value="<? =$_SESSION['AA'] ?>" size="22"></font></td>
Many thanks