i'm having problem passing a variable value, i'm using PWS as my server. can anybody please tell me what's wrong?
for example, i write this for "anything.html" file
<head>
<title>Enter name here</title>
</head>
<body>
<form name ="myform" method="post" action="print.php">
Enter name here: <input type="text" name="nama" size="30">
<input type="submit" value= "submit" >
</form>
</body>
</form>
and this as "print.php" file
<?
echo("your have enter this: ".$nama."");
?>
the result i get this error
Notice: Undefined variable: nama in C:\Inetpub\wwwroot\print.php on line 2
your have enter this: