This sithe code but i do not get any result out of it ...am new to php , please help ASAP , am using php on win98 supported by apache webserver 1.3. and mysql ..... one more problem is variables dont get initialized ...mostly do not get any result or else get "parse errors"
#!/usr/local/bin/php
<HEAD>
<TITLE>PHP Variables</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff" TEXT="#000080">
<B>Please enter some information in the textbox:</B>
<FORM METHOD="post" ACTION="var.php">
<INPUT TYPE="text" NAME="datr">
<BR>
<?php
$inf=$datr;
echo($inf);
?>
<INPUT TYPE="text" NAME="setr">
<hr>
<INPUT TYPE="submit" VALUE="Submit">
</FORM>
</BODY>