Hi. You left out the 'php' after the '<?'. So it should read:

<?php
print $action;
print $Name;
?>

See if that helps any.
~Philip

<body>
<form name="frmname">
<input type="text" name="Name" value="Rinku">
<input type="submit" name="action"  value="Login">
<?
print $action;
print $Name;
?>
</form>
</body>
</html>

-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to