can anyone tell me why $btnSubmit doesnt show any value?
it works wen i run in my pc
but wen i upload to my server it doesnt show any value

thanks

<?php
echo("Hi");
echo($btnSubmit);
?>

<html>
<body>
<form name="frm1">
<table border='0' align='center'>
<tr>
<td align='centre'>Enter Admin Password</td>
</tr>
<tr>
<td><input type="password" name="txtpass"></td>
</tr>
<tr>
<td align='center'><input type="submit" value="Enter" name="btnSubmit"></td>
</tr>
</table>
</form>
</body>
</html>