|
If you have a newish version of PHP you might well have register globals set to off, thus indicting a need to access the post vars array with slightly different syntax
either:
<?php echo $_POST['name']; ?>
or
<?php echo $HTTP_POST_VARS['name']; ?>
also - in your form coding, methode is generally spelled without the trailing e.
__________________
Ökii - formerly pootergeist
teckis - take your time and it'll save you time.
|