View Single Post
Old 08-11-2002, 06:41 AM   PM User | #2
Ökii
Regular Coder

 
Join Date: Jun 2002
Location: UK
Posts: 577
Thanks: 0
Thanked 0 Times in 0 Posts
Ökii is an unknown quantity at this point
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.
Ökii is offline   Reply With Quote