Hi,
I'm new to PHP and try to learn. I know well Java and C so at first sight it doesn't seems too hard. But I bug on a basic code and can't make it work.
Here's my index.html:
<form name="fm1" action="action.php" method="get">
<input type="text" name ="clientname" />
<input type="submit" />
</form>
Then my action.php file:
<p>The name typed in the box was <?=$clientname?></p>
But my output is: "The name typed in the box was"
Looks like it doesn't recognize the php tags. But when I replaced <?=$clientname?> with <?php echo "test"?>, it ouputed at least "The name typed in the box was test"
Can someone help me? Could it be a problem with the server? I'm running on my ISP server, which confirmed me PHP was enabled.
Thanks a lot for your help.